/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0b5d3b;
    --primary-dark: #084a2f;
    --primary-light: #e8f5ec;
    --primary-rgb: 11, 93, 59;
    --text-color: #1a1a2e;
    --text-light: #6b7280;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 10px 25px -3px rgba(0, 0, 0, 0.08), 0 4px 10px -2px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 20px 40px -5px rgba(0, 0, 0, 0.1);
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 24px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
}

body {
    font-family: 'Plus Jakarta Sans', 'Poppins', sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-color);
    line-height: 1.3;
    font-weight: 700;
}

h2 {
    font-size: 2.75rem;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

p {
    margin-bottom: 16px;
    color: var(--text-light);
    font-size: 1.05rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    cursor: pointer;
    border: 2px solid transparent;
    letter-spacing: 0.3px;
}

.btn i {
    transition: transform var(--transition-fast);
    font-size: 0.85rem;
}

.btn:hover i {
    transform: translateX(3px);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(var(--primary-rgb), 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(var(--primary-rgb), 0.2);
}

.btn-light {
    background: var(--white);
    color: var(--primary-color);
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-link {
    background: none;
    border: none;
    color: var(--text-color);
    font-weight: 600;
    padding: 14px 8px;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.btn-link:hover {
    color: var(--primary-color);
    transform: none;
    box-shadow: none;
}

/* ==================== HEADER ==================== */
#header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
    transition: var(--transition);
}

#header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-img {
    height: 80px;
    width: auto;
    display: block;
}

/* Navigation */
#navbar ul {
    display: flex;
    list-style: none;
    gap: 8px;
}

#navbar ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 10px 18px;
    border-radius: 50px;
    transition: var(--transition-fast);
}

#navbar ul li a:hover,
#navbar ul li a.active {
    color: var(--primary-color);
    background: var(--primary-light);
    font-weight: 600;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-actions .btn {
    padding: 10px 24px;
    font-size: 0.9rem;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2.5px;
    background: var(--text-color);
    border-radius: 3px;
    transition: var(--transition-fast);
    transform-origin: center;
}

.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(5px, -5px);
}

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    width: 100%;
    min-height: 90vh;
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

/* Background layer */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-image-wrapper {
    position: absolute;
    inset: 0;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    display: block;
}

/* White fade overlay - left side */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 1) 30%,
        rgba(255, 255, 255, 0.92) 44%,
        rgba(255, 255, 255, 0.65) 58%,
        rgba(255, 255, 255, 0.2) 76%,
        rgba(255, 255, 255, 0) 90%
    );
}

/* Content wrapper */
.hero .container {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    width: 100%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    max-width: 580px;
    padding: 100px 0 80px;
}

.hero-text {
    width: 100%;
    text-align: left;
}

.hero-text h1 {
    margin-bottom: 20px;
}

.hero-title-line {
    display: block;
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-color);
    letter-spacing: -0.5px;
}

.hero-title-sub {
    display: block;
    font-size: clamp(1.4rem, 2.5vw, 2.4rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-color);
    letter-spacing: -0.3px;
    margin-top: 6px;
}

.hero-description {
    font-size: clamp(0.9rem, 1.2vw, 1.05rem);
    color: var(--text-light);
    margin-bottom: 36px;
    line-height: 1.7;
    text-align: left;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.btn-divider {
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--text-light);
    margin: 0 4px;
    user-select: none;
}

/* ==================== VALUES BANNER ==================== */
.values-banner {
    background: var(--white);
    padding: 36px 0;
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
}

.values-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 24px;
    transition: transform var(--transition);
}

.value-item:hover {
    transform: translateY(-2px);
}

.value-icon {
    width: 50px;
    height: 50px;
    background: rgba(var(--primary-rgb), 0.08);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background var(--transition);
}

.value-item:hover .value-icon {
    background: var(--primary-color);
}

.value-icon i {
    font-size: 1.3rem;
    color: var(--primary-color);
    transition: color var(--transition);
}

.value-item:hover .value-icon i {
    color: var(--white);
}

.value-text h4 {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 2px;
    margin-bottom: 2px;
    text-transform: uppercase;
}

.value-text p {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0;
    letter-spacing: 1px;
}

.value-divider {
    width: 1px;
    height: 38px;
    background: var(--gray-200);
    flex-shrink: 0;
}

/* ==================== SECTIONS GENERAL ==================== */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-badge {
    display: inline-block;
    background: rgba(var(--primary-rgb), 0.08);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(var(--primary-rgb), 0.15);
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* ==================== PRODUCTS SECTION ==================== */
.products-section {
    padding: 80px 0;
    background: var(--white);
}

.products-main-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 0;
    letter-spacing: 1px;
}

.products-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.product-card-new {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
    border: 1px solid var(--gray-100);
    text-align: center;
}

.product-card-new:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.product-card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: var(--gray-50);
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-card-new:hover .product-card-image img {
    transform: scale(1.05);
}

.product-card-body {
    padding: 28px 24px 24px;
}

.product-card-body h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: 1px;
}

.product-subtitle {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.product-specs-list {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
    text-align: left;
}

.product-specs-list li {
    padding: 8px 0;
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--gray-100);
}

.product-specs-list li:last-child {
    border-bottom: none;
}

.product-specs-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-color);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.btn-view-details {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 24px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: var(--transition-fast);
    border: 2px solid var(--primary-color);
}

.btn-view-details:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.3);
}

.btn-view-details i {
    font-size: 0.8rem;
    transition: transform var(--transition-fast);
}

.btn-view-details:hover i {
    transform: translateX(4px);
}

/* ==================== ABOUT SECTION ==================== */
.about-section {
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.feature {
    text-align: left;
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(var(--primary-rgb), 0.08);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: background var(--transition);
}

.feature:hover .feature-icon {
    background: var(--primary-color);
}

.feature-icon i {
    font-size: 1.4rem;
    color: var(--primary-color);
    transition: color var(--transition);
}

.feature:hover .feature-icon i {
    color: var(--white);
}

.feature h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.feature p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ==================== EXPORT SECTION ==================== */
.export-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.export-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.export-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    transition: transform var(--transition), box-shadow var(--transition);
}

.export-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.export-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.export-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.export-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.cta-box {
    background: var(--primary-color);
    color: var(--white);
    padding: 48px 40px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.cta-content h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
    font-size: 1rem;
}

/* ==================== CONTACT SECTION ==================== */
.contact-section {
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: start;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    background: var(--gray-50);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--gray-50);
    border-radius: var(--radius);
    transition: var(--transition-fast);
    border: 1px solid transparent;
}

.info-card:hover {
    background: var(--white);
    border-color: var(--gray-200);
    box-shadow: var(--shadow);
}

.info-icon {
    width: 48px;
    height: 48px;
    background: rgba(var(--primary-rgb), 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.info-text h3 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.info-text p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.social-links span {
    font-weight: 600;
    font-size: 0.9rem;
}

.social-icons {
    display: flex;
    gap: 8px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(var(--primary-rgb), 0.08);
    color: var(--primary-color);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition-fast);
    font-size: 1.1rem;
}

.social-icons a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(var(--primary-rgb), 0.3);
}

/* ==================== FOOTER ==================== */
.footer {
    background: #0a1f15;
    color: var(--white);
    padding: 64px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-logo {
    margin-bottom: 16px;
}

.footer-logo-img {
    height: 95px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-section ul li a:hover {
    color: var(--white);
    transform: translateX(4px);
}

.newsletter-form {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-family: inherit;
    font-size: 0.9rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.newsletter-form .btn {
    padding: 12px 20px;
    font-size: 0.85rem;
    white-space: nowrap;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    font-size: 0.85rem;
}

/* ==================== BACK TO TOP ==================== */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* ==================== ANIMATIONS ==================== */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-right"] {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos="fade-right"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="fade-left"] {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos="fade-left"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos-delay="100"] { transition-delay: 0.1s; }
[data-aos-delay="200"] { transition-delay: 0.2s; }
[data-aos-delay="300"] { transition-delay: 0.3s; }

/* ==================== PROCESS / VIDEO SECTION ==================== */
.process-section {
    padding: 100px 0;
    background: #071a0e;
    position: relative;
    overflow: hidden;
}

.process-glow {
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(circle, rgba(11, 93, 59, 0.25) 0%, transparent 70%);
}

.process-glow-left  { top: -100px; left: -120px; }
.process-glow-right { bottom: -100px; right: -120px; }

.process-section .container { position: relative; z-index: 1; }

.process-badge {
    background: rgba(255, 255, 255, 0.08) !important;
    color: rgba(255, 255, 255, 0.85) !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
}

.process-title {
    color: #ffffff !important;
}

.process-subtitle {
    color: rgba(255, 255, 255, 0.55) !important;
}

/* Layout */
.process-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 48px;
    align-items: center;
}

/* Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.process-step {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    transition: transform var(--transition);
}

.process-step:hover {
    transform: translateX(4px);
}

.process-steps-left .process-step {
    flex-direction: row-reverse;
    text-align: right;
}

.process-steps-left .process-step:hover {
    transform: translateX(-4px);
}

.step-num {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    color: rgba(255, 255, 255, 0.05);
    flex-shrink: 0;
    letter-spacing: -1px;
    align-self: center;
}

.step-body {
    flex: 1;
}

.step-icon-wrap {
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: background var(--transition), border-color var(--transition);
}

.process-steps-left .step-icon-wrap {
    margin-left: auto;
    margin-right: 0;
}

.step-icon-wrap i {
    color: #5eea9b;
    font-size: 1.05rem;
}

.process-step:hover .step-icon-wrap {
    background: rgba(94, 234, 155, 0.12);
    border-color: rgba(94, 234, 155, 0.25);
}

.step-body h4 {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: 0.2px;
}

.step-body p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.82rem;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Video */
.process-video-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.process-video-container {
    position: relative;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: #000;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.07);
    cursor: pointer;
}

.process-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    background: rgba(0, 0, 0, 0.38);
    transition: background var(--transition), opacity var(--transition);
    z-index: 2;
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.video-overlay:hover {
    background: rgba(0, 0, 0, 0.25);
}

.video-play-ring {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition), border-color var(--transition);
}

.video-overlay:hover .video-play-ring {
    transform: scale(1.08);
    border-color: rgba(255, 255, 255, 0.7);
}

.video-play-btn {
    width: 64px;
    height: 64px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: transform var(--transition), background var(--transition);
}

.video-overlay:hover .video-play-btn {
    transform: scale(1.06);
}

.video-play-btn i {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-left: 5px;
}

.video-play-label {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    opacity: 0;
    transition: opacity var(--transition);
}

.process-video-container:hover .video-controls,
.process-video-container.playing .video-controls {
    opacity: 1;
}

.video-progress-wrap {
    flex: 1;
    height: 3px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
}

.video-progress-bar {
    height: 100%;
    width: 0%;
    background: #5eea9b;
    border-radius: 2px;
    transition: width 0.1s linear;
}

.video-pause-btn {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 0.85rem;
    cursor: pointer;
    padding: 4px;
    opacity: 0.8;
    transition: opacity var(--transition-fast);
    flex-shrink: 0;
}

.video-pause-btn:hover { opacity: 1; }

.video-label-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.65);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
}

.video-label-pill i {
    color: #5eea9b;
    font-size: 0.9rem;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .process-layout {
        grid-template-columns: 1fr 1.3fr 1fr;
        gap: 28px;
    }

    .process-section {
        padding: 80px 0;
    }

    .step-num {
        font-size: 2.2rem;
    }



    .hero-overlay {
        background: linear-gradient(
            to right,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 1) 28%,
            rgba(255, 255, 255, 0.9) 44%,
            rgba(255, 255, 255, 0.55) 62%,
            rgba(255, 255, 255, 0.15) 82%,
            rgba(255, 255, 255, 0) 100%
        );
    }

    .hero-content {
        max-width: 480px;
        padding: 80px 0 60px;
    }

    .values-grid {
        flex-wrap: wrap;
    }

    .value-divider:nth-child(2),
    .value-divider:nth-child(6) {
        display: none;
    }

    .products-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .product-card-image {
        height: 220px;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Process section mobile */
    .process-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .process-steps-left {
        order: 1;
    }

    .process-video-wrap {
        order: 2;
    }

    .process-steps-right {
        order: 3;
    }

    .process-steps-left .process-step {
        flex-direction: row;
        text-align: left;
    }

    .process-steps-left .step-icon-wrap {
        margin-left: 0;
        margin-right: 0;
    }

    .process-steps-left .process-step:hover {
        transform: translateX(4px);
    }

    .process-video-container {
        aspect-ratio: 16 / 9;
        border-radius: 16px;
    }

    .video-play-ring {
        width: 70px;
        height: 70px;
    }

    .video-play-btn {
        width: 52px;
        height: 52px;
    }

    .process-section {
        padding: 64px 0;
    }

    .step-num {
        font-size: 2rem;
    }

    .process-glow-left,
    .process-glow-right {
        width: 300px;
        height: 300px;
    }



    h2 {
        font-size: 2rem;
    }

    /* Hide Get Quote button on mobile - hamburger is enough */
    .header-actions .btn-primary {
        display: none;
    }

    #navbar {
        position: fixed;
        top: 0;
        right: 0;
        transform: translateX(100%);
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--white);
        box-shadow: var(--shadow-xl);
        padding: 100px 32px 40px;
        transition: transform var(--transition);
        z-index: 999;
    }

    #navbar.active {
        transform: translateX(0);
    }

    #navbar ul {
        flex-direction: column;
        gap: 4px;
    }

    #navbar ul li a {
        display: block;
        padding: 14px 16px;
        border-radius: var(--radius-sm);
        font-size: 1.05rem;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        min-height: 100svh;
        align-items: flex-end;
    }

    .hero .container {
        padding-left: 20px;
        padding-right: 20px;
        align-items: flex-end;
    }

    .hero-bg {
        position: absolute;
        inset: 0;
        height: 100%;
    }

    .hero-image-wrapper {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }

    .hero-image-wrapper img {
        object-position: 60% center;
    }

    .hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(
            to top,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 0.97) 35%,
            rgba(255, 255, 255, 0.85) 55%,
            rgba(255, 255, 255, 0.35) 80%,
            rgba(255, 255, 255, 0.05) 100%
        );
    }

    .hero .container {
        position: relative;
        z-index: 3;
    }

    .hero-content {
        max-width: 100%;
        padding: 40px 0 60px;
        width: 100%;
        align-items: flex-start;
    }

    .hero-text {
        max-width: 100%;
        text-align: left;
        width: 100%;
    }

    .hero-description {
        font-size: 0.92rem;
        max-width: 100%;
    }

    .hero-buttons {
        gap: 12px;
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-lg {
        padding: 14px 24px;
        font-size: 0.88rem;
    }

    .btn-divider {
        display: none;
    }

    .values-banner {
        padding: 24px 0;
    }

    .values-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .value-divider {
        display: none;
    }

    .value-item {
        flex-direction: column;
        text-align: center;
        padding: 14px 12px;
        gap: 10px;
    }

    .value-icon {
        width: 44px;
        height: 44px;
    }

    .value-icon i {
        font-size: 1.1rem;
    }

    .products-grid-new {
        grid-template-columns: 1fr;
        max-width: 100%;
        margin: 0 auto;
    }

    .product-card-image {
        height: 250px;
    }

    .products-main-title {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .feature {
        padding: 24px 20px;
    }

    .section-header {
        margin-bottom: 36px;
    }

    .products-section,
    .about-section,
    .export-section,
    .contact-section {
        padding: 60px 0;
    }

    .export-grid {
        grid-template-columns: 1fr;
    }

    .cta-box {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 480px) {
    .hero-bg {
        height: 100%;
    }

    .hero-content {
        padding-bottom: 40px;
        align-items: flex-start;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .value-item {
        flex-direction: row;
        text-align: left;
        padding: 12px 20px;
        gap: 14px;
    }

    .value-item:not(:last-child) {
        border-bottom: 1px solid var(--gray-100);
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature {
        padding: 20px;
    }

    .product-card-image {
        height: 200px;
    }
}

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ==================== EXTRA MOBILE POLISH ==================== */
/* Prevent horizontal overflow on all elements */
img, video, iframe, embed, object {
    max-width: 100%;
}

/* Improve tap targets for mobile */
@media (max-width: 768px) {
    /* Logo tidak terlalu tinggi di mobile */
    .logo-img {
        height: 60px;
    }

    #header .container {
        height: 68px;
    }

    /* Navbar contact link tambahan di mobile */
    #navbar ul li a {
        font-size: 1rem;
    }

    /* Product card full width on mobile */
    .product-card-new {
        width: 100%;
    }

    /* CTA box button full width */
    .cta-box .btn {
        width: 100%;
        justify-content: center;
    }

    /* Info card text tidak terpotong */
    .info-text p {
        word-break: break-word;
    }

    /* Newsletter full-width button */
    .newsletter-form .btn {
        width: 100%;
        justify-content: center;
    }

    /* Scrollbar tidak muncul horizontal */
    section {
        overflow-x: hidden;
    }
}

@media (max-width: 480px) {
    /* Typography sedikit lebih kecil */
    h2 {
        font-size: 1.75rem;
    }

    .hero-title-line {
        font-size: clamp(1.7rem, 8vw, 2.5rem);
    }

    .hero-title-sub {
        font-size: clamp(1.1rem, 5vw, 1.6rem);
    }

    /* Logo lebih kecil di HP kecil */
    .logo-img {
        height: 52px;
    }

    /* Kartu export lebih compact */
    .export-card {
        padding: 28px 20px;
    }

    /* Form label readable */
    .form-group label {
        font-size: 0.85rem;
    }

    /* Footer logo */
    .footer-logo-img {
        height: 70px;
    }
}