/* PT Hayuning Indonesia Int - Website Opsi 3 CSS (TradeTrust & Asean Sourcing Editorial Style) */

/* -------------------------------------------------------------
   CORE VARIABLES & TOKENS
------------------------------------------------------------- */
:root {
    --primary-color: #122341;
    /* Navy Blue */
    --primary-light: #1c355e;
    /* Light Navy */
    --accent-color: #d4b76c;
    /* New Flat Gold */
    --accent-hover: #e0b85a;
    /* Gold Hover */
    --bg-color: #FAF9F6;
    /* Off-White / Cream Lembut */
    --card-bg: #FFFFFF;
    --minor-bg: #F4F3EF;
    /* Warm Gray */
    --text-color: #1a2233;
    /* Dark Slate Blue Text */
    --text-light: #5c6c8c;
    /* Light Slate Blue Text */
    --divider-color: #E0DDD9;
    --white: #FFFFFF;

    --green-success: #122341;
    /* Changed to Blue according to logo */
    --green-light: #f4f6fa;
    /* Light blue tint */

    --font-headings: 'Outfit', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 6px 16px rgba(18, 35, 65, 0.05);
    --shadow-lg: 0 12px 32px rgba(18, 35, 65, 0.1);

    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 8px;
    --border-radius-sm: 4px;
}

/* -------------------------------------------------------------
   RESET & BASE STYLES
------------------------------------------------------------- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 120px;
}

/* RTL Support - Global Alignment adjustments */
[dir="rtl"] {
    text-align: right;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button,
select,
input,
textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    outline: none;
}



/* -------------------------------------------------------------
   HEADER & NAVIGATION
------------------------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background-color: var(--white);
    color: var(--primary-color);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border-bottom: 1px solid var(--divider-color);
}

.header-main-row {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
}

.header-sub-row {
    width: 100%;
    height: 40px;
    background-color: var(--minor-bg);
    border-top: 1px solid var(--divider-color);
    display: flex;
    align-items: center;
}

.sub-row-tagline {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 1px;
    text-transform: uppercase;
}

[dir="rtl"] .sub-row-tagline {
    text-align: right;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-wrap {
    display: flex;
    align-items: center;
}

.header-logo {
    height: 67px;
    width: auto;
    /* Display original green and gold brand colors */
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-color);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
}

[dir="rtl"] .nav-link.active::after {
    left: auto;
    right: 0;
}

.btn-submit-nav {
    background-color: var(--primary-color);
    color: var(--accent-color);
    padding: 8px 16px;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.btn-submit-nav:hover {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    font-weight: 600;
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition-smooth);
    padding: 2px 4px;
}

.lang-btn:hover,
.lang-btn.active {
    color: var(--accent-color);
}

.lang-divider {
    color: var(--divider-color);
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--primary-color);
    font-size: 1.5rem;
    cursor: pointer;
}

/* -------------------------------------------------------------
   UTILITY LAYOUT & COMMON COMPONENTS
------------------------------------------------------------- */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.section-tag {
    display: inline-block;
    color: var(--accent-color);
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-tag.center {
    display: block;
    text-align: center;
}

.section-title {
    font-family: var(--font-headings);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.25;
    margin-bottom: 16px;
}

.section-title.center {
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin-bottom: 50px;
}

.section-subtitle.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.btn-gold {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.btn-gold:hover {
    background-color: var(--primary-color);
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.btn-white-border {
    background-color: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-white-border:hover {
    background-color: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

.btn-green {
    background-color: var(--green-success);
    color: var(--white);
}

.btn-green:hover {
    background-color: transparent;
    color: var(--green-success);
    border-color: var(--green-success);
}

.btn-full-width {
    display: flex;
    width: 100%;
}

/* -------------------------------------------------------------
   PAGE SECTIONS & NAVIGATION MODES
------------------------------------------------------------- */
/* SPA Mode default */
.page-section {
    display: block;
    /* Visible in single page */
}

/* Multi-page Simulation Mode CSS */
body.mode-multi .page-section {
    display: none;
    /* Hide all by default */
}

body.mode-multi .page-section.active {
    display: block;
    /* Show active section only */
    animation: fadeInSection 0.5s ease;
}

/* Minor sections (like Highlights or Why Adopt) */
body.mode-multi .page-section-minor {
    display: none;
    /* Hide minor sections in multi-page mode */
}

body.mode-single .page-section-minor {
    display: block;
    /* Show in single scroll mode */
}

@keyframes fadeInSection {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* -------------------------------------------------------------
   SECTION 1: HERO / BANNER UTAMA
------------------------------------------------------------- */
.hero-section {
    position: relative;
    background-image: url('image/hero_bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 100px 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(18, 35, 65, 0.92) 30%, rgba(18, 35, 65, 0.4) 100%);
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.hero-badge-tag {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--accent-color);
    padding-bottom: 4px;
}

.hero-title {
    font-family: var(--font-headings);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    line-height: 1.5;
}

.hero-ctas {
    display: flex;
    gap: 20px;
}

/* -------------------------------------------------------------
   SECTION 2: TRADE HIGHLIGHTS
------------------------------------------------------------- */
.highlights-section {
    background-color: var(--card-bg);
    border-bottom: 1px solid var(--divider-color);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    background-color: var(--minor-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    border-top: 3px solid var(--primary-color);
    transition: var(--transition-smooth);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-top-color: var(--accent-color);
}

.news-date {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 12px;
}

.news-title {
    font-family: var(--font-headings);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.news-excerpt {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* -------------------------------------------------------------
   SECTION 3: TENTANG KAMI
------------------------------------------------------------- */
.about-section {
    background-color: var(--bg-color);
}

.about-intro-wrap {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.about-p-lead {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.6;
    margin-bottom: 24px;
}

.about-p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.about-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.about-card-item {
    background-color: var(--card-bg);
    border: 1px solid var(--divider-color);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: var(--transition-smooth);
}

.about-card-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.about-card-icon {
    font-size: 2.2rem;
    color: var(--accent-color);
}

.about-card-item h3 {
    font-family: var(--font-headings);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-color);
    border-bottom: 2px solid var(--divider-color);
    padding-bottom: 10px;
}

.about-card-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.vm-list {
    list-style: none;
}

.vm-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
}

[dir="rtl"] .vm-list li {
    padding-left: 0;
    padding-right: 24px;
}

.vm-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

[dir="rtl"] .vm-list li::before {
    left: auto;
    right: 0;
}

/* Values Sub-grid */
.about-values-subgrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.val-pill {
    background-color: var(--minor-bg);
    padding: 12px;
    border-radius: var(--border-radius-sm);
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: var(--transition-smooth);
}

.val-pill:hover {
    background-color: var(--divider-color);
}

.val-pill strong {
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary-color);
}

.val-pill span {
    font-size: 0.75rem;
    color: var(--text-light);
    line-height: 1.3;
}

/* -------------------------------------------------------------
   SECTION 4: WHY ADOPT US (4 PILLARS)
------------------------------------------------------------- */
.why-section {
    background-color: var(--primary-color);
    color: var(--white);
}

.why-section .section-title {
    color: var(--white);
}

.why-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.why-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: var(--border-radius);
    transition: var(--transition-smooth);
}

.why-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.06);
    border-color: var(--accent-color);
}

.why-icon-wrap {
    color: var(--accent-color);
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.why-card h3 {
    font-family: var(--font-headings);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}

.why-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* -------------------------------------------------------------
   SECTION 5: MANFAAT BERDASARKAN PERAN
------------------------------------------------------------- */
.benefits-section {
    background-color: var(--card-bg);
}

.benefits-split-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.benefit-card-column {
    background-color: var(--minor-bg);
    border: 1px solid var(--divider-color);
    border-radius: var(--border-radius);
    padding: 40px;
}

.benefit-card-column.for-importers {
    border-left: 4px solid var(--accent-color);
}

[dir="rtl"] .benefit-card-column.for-importers {
    border-left: none;
    border-right: 4px solid var(--accent-color);
}

.benefit-card-column.for-suppliers {
    border-left: 4px solid var(--primary-color);
}

[dir="rtl"] .benefit-card-column.for-suppliers {
    border-left: none;
    border-right: 4px solid var(--primary-color);
}

.benefit-column-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.benefit-column-header i {
    font-size: 2rem;
    color: var(--accent-color);
}

.benefit-column-header h3 {
    font-family: var(--font-headings);
    font-size: 1.4rem;
    font-weight: 800;
}

.benefit-bullet-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-bullet-list li {
    display: flex;
    gap: 15px;
}

.benefit-bullet-list li i {
    font-size: 1.3rem;
    color: var(--accent-color);
    margin-top: 3px;
}

.benefit-bullet-list li strong {
    display: block;
    font-family: var(--font-headings);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.benefit-bullet-list li p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* -------------------------------------------------------------
   SECTION 6: ALUR KERJA (THE 4-STEP WORKFLOW)
------------------------------------------------------------- */
.workflow-section {
    background-color: var(--minor-bg);
}

.workflow-steps-layout {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    position: relative;
}

/* Connecting Line Hidden for clean card design */
.workflow-steps-layout::before {
    display: none;
}

.w-step {
    position: relative;
    z-index: 2;
    background-color: var(--card-bg);
    padding: 30px 24px;
    border-radius: 12px;
    border: 1px solid var(--divider-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.w-step:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.w-step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--green-light);
    color: var(--green-success);
    font-family: var(--font-headings);
    font-size: 1.4rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}

.w-step:hover .w-step-number {
    background-color: var(--green-success);
    color: var(--white);
}

.w-step-content h3 {
    font-family: var(--font-headings);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.w-step-content p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* -------------------------------------------------------------
   SECTION 7: KATALOG PRODUK
------------------------------------------------------------- */
.catalog-section {
    background-color: var(--card-bg);
}

.catalog-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.filter-tab {
    background-color: var(--minor-bg);
    border: 1px solid var(--divider-color);
    padding: 10px 20px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border-radius: 30px;
    transition: var(--transition-smooth);
}

.filter-tab:hover {
    background-color: var(--divider-color);
    color: var(--primary-color);
}

.filter-tab.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--accent-color);
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.product-card {
    background-color: var(--bg-color);
    border: 1px solid var(--divider-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: var(--primary-color);
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: var(--border-radius-sm);
    z-index: 2;
    border: 1px solid var(--accent-color);
}

[dir="rtl"] .product-badge {
    left: auto;
    right: 12px;
}

.product-img {
    width: 100%;
    height: 180px;
    object-cover: cover;
    background-color: #eee;
    border-bottom: 1px solid var(--divider-color);
}

.product-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-info h3 {
    font-family: var(--font-headings);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.product-info p {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* -------------------------------------------------------------
   SECTION 8: MITRA KAMI (OUR PARTNERS)
------------------------------------------------------------- */
.partners-section {
    background-color: var(--minor-bg);
    border-bottom: 1px solid var(--divider-color);
}

.partners-logo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: center;
}

.partner-logo-item {
    background-color: var(--card-bg);
    border: 1px solid var(--divider-color);
    padding: 25px 15px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.partner-logo-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.partner-logo-item:hover {
    border-color: var(--accent-color);
    transform: scale(1.02);
}

/* -------------------------------------------------------------
   SECTION 9: FORMULIR INKUIRI DUA ARAH
------------------------------------------------------------- */
.inquiry-section {
    background-color: var(--bg-color);
}

.inquiry-box-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
}

.inquiry-form-card {
    background-color: var(--card-bg);
    border: 1px solid var(--divider-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

/* Tabs Toggle */
.inquiry-tabs-header {
    display: flex;
    background-color: var(--minor-bg);
    border-bottom: 1px solid var(--divider-color);
}

.inquiry-tab {
    flex: 1;
    background: transparent;
    border: none;
    padding: 18px 10px;
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition-smooth);
    border-bottom: 3px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.inquiry-tab:hover {
    color: var(--primary-color);
}

.inquiry-tab.active {
    color: var(--primary-color);
    background-color: var(--card-bg);
}

#tab-buyer.active {
    border-bottom-color: var(--accent-color);
}

#tab-supplier.active {
    border-bottom-color: var(--green-success);
}

.inquiry-tabs-body {
    padding: 40px;
}

.inquiry-form-content {
    display: none;
}

.inquiry-form-content.active {
    display: block;
    animation: fadeInSection 0.4s ease;
}

.inquiry-form-content h3 {
    font-family: var(--font-headings);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.form-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 25px;
}

/* Form Styling */
.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--divider-color);
    border-radius: var(--border-radius-sm);
    background-color: var(--bg-color);
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-color);
    background-color: var(--white);
}

#form-supplier-inquiry .form-group input:focus,
#form-supplier-inquiry .form-group select:focus,
#form-supplier-inquiry .form-group textarea:focus {
    border-color: var(--green-success);
}

/* Side Criteria Card */
.inquiry-criteria-card {
    background-color: var(--minor-bg);
    border: 1px solid var(--divider-color);
    border-radius: var(--border-radius);
    padding: 40px;
    align-self: start;
}

.inquiry-criteria-card h3 {
    font-family: var(--font-headings);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.criteria-intro {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 25px;
}

.criteria-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.criteria-list li {
    display: flex;
    gap: 15px;
}

.criteria-list li i {
    font-size: 1.2rem;
    color: var(--green-success);
    margin-top: 4px;
}

.criteria-list li strong {
    display: block;
    font-family: var(--font-headings);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.criteria-list li p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* -------------------------------------------------------------
   SECTION 10: FAQ & CONTACT (HUBUNGI KAMI)
------------------------------------------------------------- */
.faq-contact-section {
    background-color: var(--card-bg);
    border-top: 1px solid var(--divider-color);
}

.faq-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

/* Accordion */
.faq-accordion-wrap {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border: 1px solid var(--divider-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    background-color: var(--bg-color);
}

.faq-question {
    padding: 20px;
    background-color: var(--minor-bg);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.faq-question h4 {
    font-family: var(--font-headings);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-color);
}

.faq-question i {
    font-size: 0.9rem;
    color: var(--text-light);
    transition: var(--transition-smooth);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    color: var(--accent-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    background-color: var(--white);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 20px;
    border-top: 1px solid var(--divider-color);
    transition: max-height 0.4s cubic-bezier(1, 0, 1, 0);
}

.faq-answer p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* Contact Details Card */
.contact-details-card {
    background-color: var(--minor-bg);
    border: 1px solid var(--divider-color);
    border-radius: var(--border-radius);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method-item {
    display: flex;
    gap: 15px;
}

.contact-method-item i {
    font-size: 1.3rem;
    color: var(--accent-color);
    margin-top: 4px;
}

.contact-method-item h4 {
    font-family: var(--font-headings);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2px;
}

.contact-method-item p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.contact-action-btn-wrap {
    margin-top: 30px;
}

.btn-wa-chat {
    display: flex;
    width: 100%;
    background-color: #25D366;
    color: var(--white);
    padding: 12px;
    font-weight: 700;
    border-radius: var(--border-radius-sm);
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.btn-wa-chat:hover {
    background-color: #20BA5A;
}

/* Simulated Google Map */
.google-map-simulation {
    position: relative;
    width: 100%;
    height: 300px;
    background-color: #e5e3df;
    border-radius: var(--border-radius);
    border: 1px solid var(--divider-color);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}


.map-overlay-box {
    position: relative;
    background-color: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    text-align: center;
    max-width: 400px;
    z-index: 2;
    border: 1px solid var(--divider-color);
}

.map-icon {
    font-size: 2.2rem;
    color: var(--accent-color);
    margin-bottom: 12px;
}

.map-overlay-box h4 {
    font-family: var(--font-headings);
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.map-overlay-box p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 12px;
}

.map-badge {
    display: inline-block;
    background-color: var(--minor-bg);
    color: var(--text-light);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: var(--border-radius-sm);
}

/* -------------------------------------------------------------
   FOOTER
------------------------------------------------------------- */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    border-top: 2px solid var(--accent-color);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px 50px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
    gap: 40px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.brand-col {
    max-width: 280px;
}

.footer-logo {
    height: 62px;
    width: auto;
    align-self: start;
    filter: brightness(0) invert(1);
}

.footer-slogan {
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--accent-color);
    letter-spacing: 1px;
}

.footer-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
}

.footer-title {
    font-family: var(--font-headings);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 8px;
}

.footer-links,
.footer-contact-info {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

[dir="rtl"] .footer-links a:hover {
    padding-left: 0;
    padding-right: 5px;
}

.footer-contact-info li {
    display: flex;
    gap: 10px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-info li i {
    color: var(--accent-color);
    margin-top: 4px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius-sm);
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

.footer-socials a:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    border-color: var(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom {
    background-color: var(--primary-light);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px 0;
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    flex-wrap: wrap;
    gap: 15px;
}

.footer-legal-links {
    display: flex;
    gap: 10px;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal-links a:hover {
    color: var(--accent-color);
}

.legal-divider {
    color: rgba(255, 255, 255, 0.15);
}

/* -------------------------------------------------------------
   AUTO-RESPONDER EMAIL SIMULATOR MODAL
------------------------------------------------------------- */
.email-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65);
    z-index: 2000;
    display: none;
    /* Controlled via JS */
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.email-modal.active {
    display: flex;
    animation: fadeInSection 0.3s ease;
}

.email-modal-container {
    background-color: var(--minor-bg);
    border-radius: var(--border-radius);
    width: 100%;
    max-width: 650px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--divider-color);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.email-modal-header {
    background-color: var(--white);
    padding: 20px;
    border-bottom: 2px solid var(--divider-color);
}

.email-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.email-badge-status {
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 6px;
}

.email-badge-status i {
    color: var(--green-success);
}

.email-close-btn {
    background: transparent;
    border: none;
    font-size: 1.8rem;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
}

.email-meta-info {
    font-size: 0.8rem;
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.email-meta-info strong {
    color: var(--text-color);
}

.email-modal-body {
    padding: 20px;
    background-color: #e5e3df;
    /* Envelope background color */
    max-height: 400px;
    overflow-y: auto;
}

.email-content-paper {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    font-size: 0.9rem;
    color: #333;
}

.email-content-paper h4 {
    font-family: var(--font-headings);
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 8px;
}

.email-content-paper p {
    margin-bottom: 12px;
    line-height: 1.5;
}

.email-content-paper ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.email-content-paper li {
    margin-bottom: 6px;
}

.email-modal-footer {
    background-color: var(--white);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--divider-color);
}

.email-status-info {
    font-size: 0.8rem;
    color: var(--green-success);
    font-weight: 600;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.8rem;
}

/* -------------------------------------------------------------
   SECTION 8: EXPORT GALLERY
------------------------------------------------------------- */
.gallery-section {
    background-color: var(--card-bg);
    border-bottom: 1px solid var(--divider-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 250px;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(18, 35, 65, 0.9) 0%, rgba(18, 35, 65, 0.4) 70%, transparent 100%);
    color: var(--white);
    padding: 20px;
    transform: translateY(60px);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
}

.gallery-overlay p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

[dir="rtl"] .gallery-overlay {
    text-align: right;
}

/* -------------------------------------------------------------
   RESPONSIVE DESIGN (MEDIA QUERIES)
------------------------------------------------------------- */
@media (max-width: 1024px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 105px;
    }

    .header {
        height: 105px;
        display: flex;
        flex-direction: column;
    }

    .header-main-row {
        height: 70px;
        display: flex;
        align-items: center;
    }

    .header-logo {
        height: 54px;
    }

    .header-sub-row {
        height: 35px;
        display: flex;
        align-items: center;
    }

    .sub-row-tagline {
        display: none;
        /* Hide tagline on mobile */
    }

    .header-sub-row .header-container {
        justify-content: center;
        /* Center language switcher */
    }

    .hero-title {
        font-size: 2.3rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .hero-ctas {
        flex-direction: column;
        gap: 12px;
    }

    .about-grid,
    .benefits-split-grid,
    .inquiry-box-grid,
    .faq-contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .workflow-steps-layout {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .workflow-steps-layout::before {
        display: none;
        /* Remove horizontal line in mobile layout */
    }

    .w-step {
        display: flex;
        gap: 15px;
        align-items: center;
    }

    .w-step-number {
        margin-bottom: 0;
        flex-shrink: 0;
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }

    .about-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .mobile-toggle {
        display: block;
        /* Hamburger toggle visible on mobile */
    }

    .nav-menu {
        position: fixed;
        top: 160px;
        /* demo controller + header height */
        left: -100%;
        width: 100%;
        height: calc(100vh - 160px);
        background-color: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 40px;
        gap: 25px;
        transition: var(--transition-smooth);
        overflow-y: auto;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--divider-color);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        font-size: 1.1rem;
        width: 100%;
    }

    .btn-submit-nav {
        width: 100%;
        text-align: center;
    }

    .form-group-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .partners-logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {

    .highlights-grid,
    .why-grid,
    .catalog-grid,
    .gallery-grid,
    .partners-logo-grid,
    .footer-container {
        grid-template-columns: 1fr;
    }

    .lang-switcher {
        font-size: 0.75rem;
    }
}

/* -------------------------------------------------------------
   RIGHT-TO-LEFT (RTL) STYLING ADAPTATIONS
------------------------------------------------------------- */
[dir="rtl"] .mobile-toggle {
    margin-right: auto;
    margin-left: 0;
}

[dir="rtl"] .lang-switcher {
    flex-direction: row-reverse;
}

/* Reverse Workflow lines in RTL (Mobile handles this linearly, desktop needs line) */
@media (min-width: 769px) {
    [dir="rtl"] .workflow-steps-layout::before {
        left: 50px;
        right: 50px;
    }
}

/* Form group rows reverse in RTL */
[dir="rtl"] .form-group-row {
    direction: rtl;
}

/* Floating WhatsApp Button */
.whatsapp-floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-smooth);
    animation: waPulse 2s infinite;
}

[dir="rtl"] .whatsapp-floating-btn {
    right: auto;
    left: 30px;
}

.whatsapp-floating-btn:hover {
    transform: scale(1.1);
    background-color: #20BA5A;
}

.wa-tooltip {
    position: absolute;
    right: 75px;
    background-color: var(--primary-color);
    color: var(--accent-color);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-sm);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

[dir="rtl"] .wa-tooltip {
    right: auto;
    left: 75px;
}

.whatsapp-floating-btn:hover .wa-tooltip {
    opacity: 1;
    visibility: visible;
}

@keyframes waPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}