/* 
   Sanpota B2B Packaging CMS - Style Sheet
   Designed with Vibrant Premium Aesthetics & High-End Micro-interactions
*/

/* -------------------------------------------------------------
   1. VARIABLES & DESIGN SYSTEM
------------------------------------------------------------- */
:root {
    --primary: #C13627;          /* Sanpota Red */
    --primary-hover: #9B2B1E;
    --primary-light: #FFF0EE;
    --secondary: #E3A021;        /* Sanpota Warm Yellow */
    --secondary-hover: #C58B1B;
    --secondary-light: #FFF8EA;
    
    --bg-warm: #FFF6ED;          /* Beautiful Warm Cream BG */
    --bg-white: #FFFFFF;
    --bg-dark: #004A3E;          /* Premium Deep Green Footer */
    --bg-dark-accent: #00382F;   /* Deep Dark Green Accent */
    
    --text-dark: #352E2B;        /* High-contrast Warm Charcoal Text */
    --text-muted: #7E706A;
    --text-light: #FFFFFF;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    --shadow-sm: 0 4px 6px -1px rgba(197, 37, 37, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(197, 37, 37, 0.07), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(197, 37, 37, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-premium: 0 30px 60px -15px rgba(35, 27, 21, 0.15);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* -------------------------------------------------------------
   2. RESET & BASE
------------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-warm);
    color: var(--text-dark);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Premium Scroll Snapping for Homepage */
body.homepage-snap {
    scroll-snap-type: y mandatory;
}

body.homepage-snap section,
body.homepage-snap footer {
    scroll-snap-align: start;
    scroll-margin-top: 72px;
    scroll-snap-stop: always;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* -------------------------------------------------------------
   3. REUSABLE COMPONENTS (Buttons, Badge, Container)
------------------------------------------------------------- */
.section-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 48px; /* Standardized to smaller padding for consistent tight spacing */
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-light);
    box-shadow: 0 10px 20px -5px rgba(197, 37, 37, 0.4);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(197, 37, 37, 0.5);
}

.btn-secondary {
    background-color: var(--bg-white);
    color: var(--primary);
    border-color: var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary-light);
    transform: translateY(-3px);
}

.btn-full {
    width: 100%;
    text-align: center;
}

.b2b-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary-light);
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.section-header {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.25rem;
    max-width: 850px;
    position: relative;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary);
    border-radius: var(--radius-full);
    margin-top: 12px;
}

.view-all-link {
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.view-all-link:hover {
    color: var(--primary-hover);
    gap: 12px;
}

/* -------------------------------------------------------------
   4. STICKY HEADER
------------------------------------------------------------- */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(250, 245, 239, 0.85); /* Frosty Warm BG */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(197, 37, 37, 0.08);
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between; /* This separates logo (left) and dropdown (right) */
}

.brand-logo {
    height: 38px;
    object-fit: contain;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-logo:hover {
    transform: scale(1.05);
}

.nav-menu ul {
    display: flex;
    gap: 48px; /* Increased spacing between links */
}

.nav-menu a {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: #004A3E; /* Sanpota Green for non-homepage pages */
    position: relative;
    padding: 6px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after,
body.page-id-12 .nav-menu a[href$="/how-to-order/"]::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active,
body.page-id-12 .nav-menu a[href$="/how-to-order/"] {
    color: var(--primary);
}

/* Elegant Dropdown Language Switcher */
.lang-dropdown-container {
    position: relative;
    cursor: pointer;
    display: inline-block;
}

.lang-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: var(--radius-full);
    background-color: var(--bg-white);
    border: 1px solid rgba(193, 54, 39, 0.08);
    box-shadow: var(--shadow-sm);
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.lang-dropdown-trigger:hover {
    background-color: var(--primary-light);
    border-color: rgba(193, 54, 39, 0.2);
}

.lang-icon-main {
    font-size: 1.25rem;
    color: #004A3E; /* Consistent green matching nav menu */
    transition: color 0.3s ease;
    font-weight: 700;
}

.lang-dropdown-trigger:hover .lang-icon-main {
    color: var(--primary);
}

.lang-current-label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: #004A3E; /* Consistent green matching nav menu */
    transition: color 0.3s ease;
    display: inline-block;
    width: 62px; /* Fixed width prevents header shift when text changes */
    text-align: left;
}

.lang-dropdown-trigger:hover .lang-current-label {
    color: var(--primary);
}

.lang-caret {
    font-size: 0.75rem;
    color: var(--text-muted);
    transition: transform 0.3s ease, color 0.3s ease;
}

.lang-dropdown-container:hover .lang-caret {
    transform: rotate(180deg);
    color: var(--primary);
}

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0; /* Dropdown opens to the left-aligned */
    right: auto;
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(193, 54, 39, 0.08);
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 170px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1100;
    list-style: none;
    margin: 0;
}

.lang-dropdown-container:hover .lang-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown-menu li {
    width: 100%;
}

.lang-dropdown-menu li a {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Left-aligned items */
    gap: 10px; /* Space between flag, text and checkmark */
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: var(--transition);
    text-decoration: none;
}

.lang-dropdown-menu li a:hover {
    background-color: #f9f9f9;
}

.lang-dropdown-menu li.active a {
    background-color: #FEF0EF; /* Light red/pink background for active item */
    color: #C13627; /* Theme red text */
}

.lang-check {
    font-size: 0.9rem;
    color: #C13627;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--primary);
    cursor: pointer;
}

/* -------------------------------------------------------------
   5. HERO SECTION
------------------------------------------------------------- */
.hero-section {
    min-height: calc(100vh - 72px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 129px 0 30px 0;
    position: relative;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    animation: fadeInLeft 0.8s ease-out forwards;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--bg-dark);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-title .highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(227, 160, 33, 0.3);
    z-index: -1;
    border-radius: var(--radius-full);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 550px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.hero-mascot {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    position: relative;
    z-index: 5;
    animation: fadeInRight 1s ease-out forwards;
}

.mascot-wrapper {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.mascot-img {
    max-height: 800px;
    width: 125%;
    max-width: 800px;
    margin-bottom: -110px; /* Overlap ribbon but stay behind it */
    transform: translateX(-80px); /* Geser ke kiri menggunakan transform agar lebih presisi dan pasti bergerak */
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(35, 27, 21, 0.15));
    position: relative;
    z-index: 1; /* Letakkan di belakang (bawah) layer features ribbon */
}


/* Features Ribbon */




.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 180px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.feature-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}



.feature-item:hover .feature-icon {
    transform: scale(1.1);
}

.feature-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
}

.feature-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* -------------------------------------------------------------
   6. SOLUTIONS SECTION
------------------------------------------------------------- */
.solutions-section {
    background-color: transparent;
    position: relative;
    padding: 0;
    margin-bottom: 100px !important;
}

.solutions-section::before {
    content: '';
    position: absolute;
    bottom: -01px;
    width: 180px;
    height: 180px;
    background-image: url('../assets/images/bgsanpota.png');
    background-size: contain;
    background-position: bottom left;
    background-repeat: no-repeat;
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
}

.solutions-section .section-container {
    position: relative;
    z-index: 1;
}

.solutions-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding: 10px 10px 0 10px;
}

.solutions-header-wrapper h2 {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--primary);
    margin: 0;
}

.solutions-header-wrapper h2::after {
    display: none;
}

.view-all-link-red {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.05rem;
    padding-bottom: 5px;
    transition: var(--transition);
}

.view-all-link-red:hover {
    color: var(--primary-hover);
    gap: 12px;
}

.solutions-container-card {
    background-color: #FFFFFF;
    border-radius: 20px;
    padding: 24px 32px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 16px;
}

.solution-card {
    background-color: #FFFFFF;
    border-radius: var(--radius-md);
    padding: 16px 8px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid #FFE9D1;
    box-shadow: 0 5px 20px #FFE9D1;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: auto;
}

.solution-card:hover {
    background-color: #FFFFFF;
    transform: translateY(-8px);
    box-shadow: 0 15px 35px #FFE9D1;
    border-color: #FFE9D1;
}

.solution-img-wrapper {
    width: 90px; /* Scaled down from 130px */
    height: 90px;
    margin-bottom: 12px;
}

.solution-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.solution-card h3 {
    font-size: 0.95rem; /* Scaled down slightly to fit */
    font-weight: 700;
    color: var(--bg-dark); /* Dark green */
    line-height: 1.3;
    margin-bottom: 15px;
}

.solution-link {
    display: block;
    font-size: 0.8rem;
    color: var(--primary); /* Red color */
    font-weight: 700;
    margin-top: auto; /* Push to bottom */
}
.solution-link i {
    margin-left: 5px;
    transition: transform 0.3s;
}
.solution-card:hover .solution-link i {
    transform: translateX(5px);
}

.solution-card:hover .solution-img-wrapper img {
    transform: scale(1.1);
}


/* -------------------------------------------------------------
   7. PRODUCTS SECTION (Redesigned Home Page Solid Red Section)
------------------------------------------------------------- */
.products-section {
    background-color: #FFF6ED;
    padding: 0;
    position: relative;
}

/* Removed red section background patterns */

.products-section .section-container {
    padding: 40px 40px;
}

.products-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding: 0 10px;
}

.products-header-wrapper h2 {
    color: var(--primary); /* Red text for Hot Items */
    font-size: 2.25rem;
    font-weight: 800;
    margin: 0;
}

.products-section .products-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 16px;
}

.products-section .product-card {
    background-color: #FFFFFF;
    border-radius: var(--radius-md);
    padding: 0;
    text-align: center;
    border: 2px solid #FFE9D1;
    box-shadow: 0 5px 20px #FFE9D1;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    color: inherit;
    text-decoration: none;
    min-width: 0;
    overflow: hidden;
}

.products-section .product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px #FFE9D1;
}

.products-section .product-img-wrapper {
    width: 100%;
    max-width: none;
    aspect-ratio: 1.12 / 1;
    height: auto;
    overflow: hidden;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    margin-bottom: 12px;
    background-color: #F6F8F8;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(255, 233, 209, 0.35);
}

.products-section .product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    display: block;
}

.products-section .product-card:hover .product-img-wrapper img {
    transform: scale(1.08);
}

.products-section .product-card h3 {
    font-size: 0.85rem; /* Smaller font to fit 8 columns */
    font-weight: 700;
    color: var(--bg-dark); /* #004A3E Deep Green */
    margin: 0;
    padding: 0 10px 15px;
    font-family: var(--font-heading);
    line-height: 1.3;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Detail Button inside product card */
.btn-product-detail {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px 14px;
    background-color: var(--primary);
    color: #FFFFFF !important;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin-top: auto;
}

.btn-product-detail:hover {
    background-color: #A12518; /* Darker red */
}

/* -------------------------------------------------------------
   8. UNIFIED FEATURES SECTION (Home Page Complex Grid)
------------------------------------------------------------- */
.unified-features-section {
    background-color: #FFF6ED; /* Warm Light Cream Section Background */
    padding: 0; /* Let section-container handle padding consistently */
    overflow: hidden;
}

.unified-top-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch; /* Stretch both containers to be identical in height */
}

/* Left Box: Custom & Printing */
.unified-custom-printing {
    background-color: #FFFFFF;
    border-radius: 24px;
    padding: 16px 24px; /* Reduced padding to make it shorter vertically */
    border: none; /* Removed border */
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.unified-custom-printing .home-custom-grid {
    display: block; /* Remove old 2-column internal grid */
}

.home-custom-content {
    display: flex;
    flex-direction: column;
    padding-right: 40%; /* Leave right 40% for the mascot */
}

.home-custom-header h2 {
    font-size: 2rem; /* Smaller font so it fits nicely */
    color: var(--primary); /* Red title */
    margin-bottom: 8px; /* Tighter margin */
    font-weight: 800;
    font-family: var(--font-heading);
}

.home-custom-header p {
    font-size: 0.95rem;
    color: var(--bg-dark);
    margin-bottom: 12px; /* Tighter margin */
    line-height: 1.5;
    max-width: 100%;
}

.home-custom-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 5px; /* Pull button up */
    max-width: 100%;
}

.home-custom-feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: transparent;
    border: none;
    padding: 10px 0;
    transition: transform 0.3s ease;
}

.home-custom-feature-card:hover {
    transform: translateY(-5px);
}

.home-custom-feature-card span {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.75rem; /* Smaller text */
    color: var(--bg-dark);
}

.home-custom-feat-icon {
    width: 48px; /* Smaller icon */
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.home-custom-feat-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.home-custom-feature-card:hover .home-custom-feat-icon {
    transform: scale(1.1);
}

.home-custom-cta-wrapper {
    margin-top: 0px; /* Pull button up further */
}

/* Custom CTA Button in Red with White Circle Arrow */
.btn-home-custom-cta-new {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px; /* Match detail button gap */
    padding: 10px 14px; /* Match detail button padding */
    background-color: var(--primary); /* Red Button */
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem; /* Match detail button font size */
    border-radius: 8px; /* Rounded Box */
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 15px rgba(193, 54, 39, 0.2);
    width: fit-content;
}

.btn-home-custom-cta-new:hover {
    background-color: #A12518;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(193, 54, 39, 0.3);
}

/* .arrow-circle removed as per user request */

/* Mascot Sizing & Positioning in Unified Layout */
.home-custom-mascot-wrapper {
    position: absolute;
    bottom: -15px; /* Pull slightly more down/right for overlap effect */
    right: -45px;
    width: 70%; /* Increased from 50% to 60% */
    max-width: 360px; /* Increased from 290px to 330px */
    margin: 0;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.home-custom-mascot-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.12));
    transition: transform 0.3s ease;
    transform-origin: bottom right; /* Changed for bottom right positioning */
}

.unified-custom-printing:hover .home-custom-mascot-img {
    transform: scale(1.03);
}

.custom-heart-icon-premium {
    position: absolute;
    top: 10px;
    left: 20px;
    color: #FFFFFF;
    font-size: 2.2rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

/* -------------------------------------------------------------
   8b. KENAPA SANPOTA? SECTION (Unified Right Column)
------------------------------------------------------------- */
.unified-why-us {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Push title to top and grid to bottom */
    margin-top: 15px; /* Shift down slightly */
}

.home-why-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.home-why-us-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.home-why-card {
    background-color: #FFFFFF; /* White card bg */
    border: 2px solid rgba(255, 140, 0, 0.15); /* Soft orange border */
    border-radius: 16px;
    padding: 15px 12px; /* Slightly more room for bigger text/icons */
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.home-why-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 15px 45px rgba(193, 54, 39, 0.12);
}

.home-why-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px auto;
    transition: transform 0.3s ease;
}

.home-why-icon img {
    width: 65px;
    height: 65px;
    object-fit: contain;
}

.home-why-card:hover .home-why-icon {
    transform: scale(1.1);
}

.home-why-card h3 {
    font-size: 1.1rem; /* Larger title */
    font-weight: 800;
    color: var(--primary); /* Red title */
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.home-why-card p {
    font-size: 0.72rem;
    color: var(--bg-dark); /* Green color for description */
    line-height: 1.4;
}

/* -------------------------------------------------------------
   9. CARA ORDER SECTION (Unified Bottom Row)
------------------------------------------------------------- */
.unified-bottom-row {
    width: 100%;
}

.cara-order-card {
    background-color: #FFFFFF;
    border-radius: 24px;
    padding: 20px 40px 25px 40px; /* Minimal padding for the steps */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: none; /* Removed border */
    position: relative;
    overflow: hidden; /* Ensure mascot is clipped to the container's rounded corners */
}

.cara-header {
    text-align: center;
    margin-bottom: 10px; /* Reduced margin further */
}

.cara-header h2 {
    font-size: 2.2rem;
    display: inline-block;
    position: relative;
    font-weight: 800;
    color: var(--text-dark); /* Black title, not red */
    font-family: var(--font-heading);
    margin: 0; /* Remove default browser margin to prevent pushing content down */
}

.cara-grid-wrapper {
    display: flex;
    gap: 30px;
    align-items: center;
    position: relative; /* Anchor for absolute mascot */
}

.cara-steps-relative-wrapper {
    flex: 0 1 auto; /* Don't stretch to full width, hug the content */
    position: relative;
}

.cara-mascot-side {
    width: 250px;
    flex-shrink: 0;
    display: flex;
    justify-content: flex-end;
}

.cara-steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    position: relative;
    z-index: 2;
}

@media (min-width: 600px) and (max-width: 1024px) {
    .cara-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cara-steps-grid .cara-card:nth-child(5) {
        grid-column: span 2;
    }
}

@media (min-width: 1025px) {
    .cara-steps-relative-wrapper {
        width: 100%;
        margin: 0 auto;
    }
    .cara-steps-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 20px;
        padding: 0 200px 0 0;
        justify-content: space-between;
    }
}

/* Transparent premium step cards */
.cara-card {
    background-color: transparent; /* No white background card */
    border: none; /* No border */
    box-shadow: none; /* No shadow */
    padding: 0;
    text-align: center;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.cara-card:hover {
    transform: translateY(-5px);
}

.step-card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
    position: relative;
}

@media (max-width: 768px) {
    .step-card-header {
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        gap: 8px;
    }
    .step-card-header .step-num,
    .step-card-header .step-icon {
        margin: 0 auto !important;
    }
}

.step-num {
    width: 24px;
    height: 24px;
    background-color: var(--primary); /* Red circle */
    color: var(--text-light);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(193, 54, 39, 0.2);
}

.step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.cara-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
    font-family: var(--font-heading);
}

.cara-card p {
    font-size: 0.75rem;
    color: var(--bg-dark);
    line-height: 1.5;
    max-width: 170px;
    margin: 0 auto;
}

/* Curved SVGs Arrows connecting steps (Inline) */
.step-arrow-inline {
    position: absolute;
    right: -35px; /* Offset further to accommodate longer width */
    top: 50%;
    transform: translateY(-50%);
    width: 45px; /* Longer arrows */
    height: auto;
    z-index: 1;
}

/* Hide arrow on mobile, or just let it scale. For now, show on desktop only to be safe. */
@media (max-width: 1024px) {
    .step-arrow-inline {
        display: none;
    }
}

.cara-mascot-side {
    position: absolute;
    bottom: -25px; /* Stick perfectly to the bottom edge of the white box */
    right: -20px;  /* Stick slightly out of the right edge */
    z-index: 2;
    cursor: pointer;
}

.order-mascot-img {
    max-width: 130%; /* Reset max-width */
    width: 380px; /* Shrunk size to match the slim container */
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.12));
    transition: transform 0.3s ease;
    transform-origin: bottom center;
}

.cara-mascot-side:hover .order-mascot-img {
    transform: scale(1.1); /* Increased scale for more noticeable animation */
}

.order-watermark-img {
    position: absolute;
    top: -150px;
    left: 200px;
    width: 150px;
    opacity: 0.05;
    z-index: -1;
    pointer-events: none;
    transform: rotate(15deg);
}

/* -------------------------------------------------------------
   X. PARTNERS SECTION
------------------------------------------------------------- */
.partners-header { text-align: center; margin-bottom: 35px; }

.partners-header h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary); /* Red color for title */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.partners-header p {
    font-size: 1.1rem;
    color: var(--bg-dark);
}

.partners-slider {
    width: 100%;
    margin: auto;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}
.partners-slider::before,
.partners-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}
.partners-slider::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-warm) 0%, rgba(255,255,255,0) 100%);
}
.partners-slider::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-warm) 0%, rgba(255,255,255,0) 100%);
}
.partners-slide-track {
    display: flex;
    width: max-content;
    animation: scrollPartners 40s linear infinite;
    align-items: center;
}
.partner-slide {
    width: 200px;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.partner-slide img {
    max-width: 100%;
    max-height: 70px;
    object-fit: contain;
    height: auto;
    transition: all 0.3s ease;
}
.partner-slide:hover img {
    transform: scale(1.1);
}
@keyframes scrollPartners {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
    100% { transform: translateX(calc(-200px * 46)); }

/* -------------------------------------------------------------
   10. CALL TO ACTION FORM SECTION (Red Form)
------------------------------------------------------------- */
.home-articles-section {
    padding: 0 0 18px;
    background: var(--bg-warm);
}

body.home .testimonials-slider-section + .home-articles-section,
body.front-page .testimonials-slider-section + .home-articles-section {
    margin-top: -44px;
}

.home-articles-section .section-container {
    max-width: 1304px;
    margin: 0 auto;
}

.home-articles-header {
    display: block;
    text-align: center;
    margin-bottom: 22px;
}

.home-articles-eyebrow {
    display: inline-flex;
    margin-bottom: 8px;
    color: var(--primary);
    font-weight: 900;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.home-articles-header h2 {
    margin: 0;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 2.2rem;
    line-height: 1.12;
}

.home-articles-header p {
    max-width: 620px;
    margin: 8px auto 0;
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.55;
}

.home-articles-swipe-hint {
    display: none;
}

.home-articles-carousel {
    position: relative;
}

.home-articles-grid {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 0 2px 8px;
    scroll-behavior: smooth;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
}

.home-articles-grid::-webkit-scrollbar {
    display: none;
}

.home-article-card {
    display: flex;
    flex: 0 0 calc((100% - 36px) / 3);
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #FFE0BE;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 14px 30px rgba(255, 183, 93, 0.14);
}

.home-article-image {
    aspect-ratio: 997 / 512;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #fff8ef;
    color: #ed8c00;
    text-decoration: none;
}

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

.home-article-image span {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: #fff1df;
    font-size: 1.55rem;
}

.home-article-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 16px 18px 18px;
}

.home-article-date {
    display: block;
    margin-bottom: 8px;
    color: #ed8c00;
    font-size: 0.76rem;
    font-weight: 900;
}

.home-article-content h3 {
    margin: 0 0 8px;
    font-family: var(--font-heading);
    font-size: 1.08rem;
    line-height: 1.28;
    min-height: 2.76em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.home-article-content h3 a {
    color: #004A3E;
    text-decoration: none;
}

.home-article-content p {
    margin: 0 0 14px;
    color: #3e7168;
    font-size: 0.9rem;
    line-height: 1.5;
    min-height: 6em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.home-article-readmore {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 7px;
    margin-top: auto;
    padding-top: 2px;
    color: var(--primary);
    font-weight: 900;
    font-size: 0.86rem;
    text-decoration: none;
}

.home-articles-controls {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
}

.home-articles-carousel.has-overflow .home-articles-controls {
    display: flex;
}

.home-articles-arrow {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ffe0be;
    border-radius: 50%;
    background: #fff;
    color: var(--primary);
    box-shadow: 0 10px 24px rgba(255, 183, 93, 0.16);
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.home-articles-arrow:hover {
    transform: translateY(-1px);
    background: #fff8ef;
}

.home-articles-arrow:disabled {
    cursor: default;
    opacity: 0.38;
    transform: none;
}

.home-articles-empty {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px;
    border: 1px solid #FFE0BE;
    border-radius: 18px;
    background: #fff;
    color: #004A3E;
    font-weight: 800;
}

.home-articles-empty i {
    color: #ed8c00;
    font-size: 1.4rem;
}

.sanpota-article-page {
    background: var(--bg-warm);
    color: var(--text-dark);
}

.sanpota-article-container {
    width: min(100% - 40px, 980px);
    margin: 0 auto;
}

.sanpota-article-hero {
    padding: 54px 0 34px;
    border-bottom: 1px solid #ffe0be;
    background: linear-gradient(180deg, #fff8ef 0%, var(--bg-warm) 100%);
}

.sanpota-article-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 900;
    text-decoration: none;
}

.sanpota-article-eyebrow {
    margin: 0 0 10px;
    color: #ed8c00;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.sanpota-article-hero h1 {
    max-width: 820px;
    margin: 0;
    color: #004A3E;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.35rem);
    line-height: 1.08;
}

.sanpota-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.sanpota-article-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    border: 1px solid #ffe0be;
    border-radius: 999px;
    background: #fff;
    color: #3e7168;
    font-size: 0.86rem;
    font-weight: 800;
}

.sanpota-article-shell {
    margin: 36px 0 58px;
    padding: 36px;
    border: 1px solid #ffe0be;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(255, 183, 93, 0.13);
}

.sanpota-article-featured {
    margin: 0 0 30px;
    overflow: hidden;
    border-radius: 16px;
    background: #fff8ef;
    aspect-ratio: 997 / 512;
}

.sanpota-article-featured img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sanpota-article-content {
    max-width: 820px;
    margin: 0 auto;
    color: #254c46;
    font-size: 1.04rem;
    line-height: 1.8;
}

.sanpota-article-content > *:first-child {
    margin-top: 0;
}

.sanpota-article-content > *:last-child {
    margin-bottom: 0;
}

.sanpota-article-content p {
    margin: 0 0 20px;
}

.sanpota-article-summary,
.sanpota-article-note {
    position: relative;
    margin: 24px 0;
    padding: 18px 20px 18px 58px;
    border: 1px solid #ffe0be;
    border-radius: 14px;
    line-height: 1.6;
}

.sanpota-article-summary {
    background: #fff8ef;
    color: #254c46;
}

.sanpota-article-note {
    background: #f1fbf7;
    border-color: #cbe8dd;
    color: #254c46;
}

.sanpota-article-summary::before,
.sanpota-article-note::before {
    position: absolute;
    top: 18px;
    left: 18px;
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-family: "Font Awesome 6 Free";
    font-size: 0.82rem;
    font-weight: 900;
}

.sanpota-article-summary::before {
    content: "\f0eb";
    background: #ed8c00;
}

.sanpota-article-note::before {
    content: "\f00c";
    background: #004A3E;
}

.sanpota-article-content h2,
.sanpota-article-content h3 {
    margin: 34px 0 12px;
    color: #004A3E;
    font-family: var(--font-heading);
    line-height: 1.22;
}

.sanpota-article-content h2 {
    font-size: 1.55rem;
}

.sanpota-article-content h3 {
    font-size: 1.25rem;
}

.sanpota-article-content ul,
.sanpota-article-content ol {
    display: grid;
    gap: 10px;
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}

.sanpota-article-content ol {
    counter-reset: sanpota-step;
}

.sanpota-article-content li {
    position: relative;
    padding: 12px 14px 12px 42px;
    border: 1px solid #ffe0be;
    border-radius: 12px;
    background: #fff8ef;
    line-height: 1.55;
}

.sanpota-article-content li::before {
    content: "\f00c";
    position: absolute;
    top: 12px;
    left: 14px;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ed8c00;
    color: #fff;
    font-family: "Font Awesome 6 Free";
    font-size: 0.68rem;
    font-weight: 900;
}

.sanpota-article-content ol li {
    counter-increment: sanpota-step;
}

.sanpota-article-content ol li::before {
    content: counter(sanpota-step);
    background: #004A3E;
    font-family: var(--font-body);
    font-size: 0.78rem;
}

.sanpota-article-content table {
    width: 100%;
    margin: 26px 0;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border: 1px solid #ffe0be;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 12px 26px rgba(255, 183, 93, 0.12);
}

.sanpota-article-content th,
.sanpota-article-content td {
    padding: 14px 16px;
    border-bottom: 1px solid #ffe0be;
    text-align: left;
    vertical-align: top;
}

.sanpota-article-content th {
    background: #004A3E;
    color: #fff;
    font-size: 0.92rem;
    font-weight: 900;
}

.sanpota-article-content td {
    color: #254c46;
}

.sanpota-article-content tr:last-child td {
    border-bottom: 0;
}

.sanpota-article-content tbody tr:nth-child(even) td {
    background: #fff8ef;
}

.footer-cta-section {
    background-color: transparent;
    padding: 40px 0;
    margin-bottom: 10px;
    position: relative;
    z-index: 30;
}

.cta-box-grid {
    background-color: var(--primary);
    border-radius: 20px;
    padding: 40px 40px 40px 25px; /* Padding kiri dikurangi menjadi 25px agar semua isi geser ke kiri */
    color: var(--text-light);
    display: grid;
    grid-template-columns: 1.25fr 1.15fr 0.75fr; /* Teks dan Form ditarik lebih ke kiri, sisa ruang kanan dibesarkan */
    gap: 40px; /* Dikurangi sedikit agar isi tidak terlalu berdesakan saat lebar container disamakan */
    align-items: center;
    position: relative;
    /* overflow: hidden removed to allow mascot */
    box-shadow: 0 15px 30px rgba(193, 54, 39, 0.2);
    
    /* Samakan lebar kotak merah dengan kotak putih Cara Order (1400px - 96px padding) */
    max-width: 1304px !important; 
    margin: 0 auto;
}

.cta-bg-shapes::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    top: -100px;
    left: -100px;
}

.cta-left-content {
    position: relative;
    z-index: 2;
}

.cta-left-content h2 {
    font-size: 1.7rem; /* Sedikit dikecilkan dari 1.8rem */
    color: var(--text-light);
    margin-bottom: 6px;
    font-family: var(--font-heading);
    line-height: 1.2;
}

.cta-left-content p {
    font-size: 0.9rem; /* Reduced from 1rem */
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
}

.cta-features-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px; /* Tighter gap to save space */
    margin-bottom: 0;
}

.cta-feature-col {
    display: flex;
    gap: 8px; /* Tighter gap */
    align-items: flex-start;
}

.cta-feat-icon-box {
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px dashed rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-light);
    flex-shrink: 0;
}

.cta-feat-text-box {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cta-feat-text-box strong {
    font-size: 0.85rem; /* Reduced from 0.95rem */
    font-weight: 700;
    color: var(--text-light);
    white-space: nowrap; /* GUARANTEE it stays on one line */
}

.cta-feat-text-box span {
    font-size: 0.72rem; /* Reduced from 0.8rem */
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.3;
}

/* Form structure */
.cta-direct-form {
    display: flex;
    flex-direction: column;
    overflow: visible;
}

.form-row-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

.form-row-2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.form-group-white {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group-white label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-light);
}

.form-group-white input,
.form-group-white select {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 16px;
    border: none;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-dark);
    background-color: #FFFFFF;
    outline: none;
    transition: var(--transition);
}

.form-group-white input::placeholder {
    font-size: 0.75rem; /* Hanya mengecilkan teks bayangan (masukkan...) */
}

.form-group-white input:focus,
.form-group-white select:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.cta-need-field {
    position: relative;
    z-index: 80;
}

.cta-need-trigger {
    width: 100%;
    padding: 10px 36px 10px 14px;
    border: none;
    border-radius: 8px;
    background-color: #FFFFFF;
    color: #757575;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    line-height: normal;
    text-align: left;
    outline: none;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
    box-sizing: border-box;
}

.cta-need-field.has-value .cta-need-trigger {
    color: var(--text-dark);
}

.cta-need-trigger::after {
    content: "\f107";
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #777;
    pointer-events: none;
}

.cta-need-field.is-open .cta-need-trigger::after {
    transform: translateY(-50%) rotate(180deg);
}

.cta-need-field.has-error .cta-need-trigger,
.cta-need-trigger:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.cta-need-menu {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    z-index: 999;
    max-height: 168px;
    overflow-y: auto;
    padding: 6px;
    border: 1px solid #FFD29F;
    border-radius: 9px;
    background: #FFFFFF;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
    scrollbar-color: #9B9B9B #F7F7F7;
    scrollbar-width: thin;
}

.cta-need-field.is-open .cta-need-menu {
    display: block;
}

.cta-need-menu button {
    display: block;
    width: 100%;
    min-height: 34px;
    padding: 7px 10px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: #004A3E;
    font-family: inherit;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: left;
    cursor: pointer;
}

.cta-need-menu button:hover {
    background: #FFF1E4;
    color: #C93629;
}

.cta-consent-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
}

.cta-consent-text .privacy-link {
    color: #FFFFFF;
    font-weight: 600; /* Semibold */
    text-decoration: underline;
}

.cta-submit-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.btn-consultation-yellow {
    background-color: #F8B500; /* Warm Yellow */
    color: var(--bg-dark);
    border-radius: var(--radius-md);
    padding: 12px 30px;
    border: none;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    white-space: nowrap;
}

.btn-consultation-yellow:hover {
    background-color: #E0A000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cta-right-mascot {
    position: relative;
    align-self: stretch; /* Memastikan ruangnya membentang penuh ke bawah kotak merah */
}

.cta-large-mascot {
    position: absolute;
    width: 280px; 
    max-width: none;
    right: -20px; 
    bottom: -10px; 
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}

@media (max-width: 900px) {
    .cta-box-grid {
        grid-template-columns: 1fr;
        padding: 40px 24px;
        gap: 40px;
    }
    .cta-features-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .cta-large-mascot {
        width: 250px;
        right: 0;
        bottom: 0;
    }
}

/* -------------------------------------------------------------
   11. FOOTER AREA
------------------------------------------------------------- */
.main-footer {
    background-color: var(--bg-dark);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    border-top-left-radius: 48px;
    border-top-right-radius: 48px;
    position: relative;
    z-index: 10;
    overflow: hidden;
    margin-top: 100px;
}

.footer-top-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 64px 48px 48px 48px;
    display: grid;
    grid-template-columns: 1.35fr 0.9fr 0.9fr 1.35fr;
    gap: 34px;
}

.brand-col {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-logo {
    height: 36px;
    width: fit-content;
    object-fit: contain;
    filter: brightness(0) invert(1); /* Force brand logo white */
}

.brand-tagline {
    font-size: 0.85rem;
    line-height: 1.6;
    max-width: 330px;
    margin: 0;
}

.footer-brand-note {
    max-width: 320px;
    margin: 0;
    padding-left: 14px;
    border-left: 2px solid var(--primary);
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.8rem;
    line-height: 1.55;
}

.footer-brand-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 340px;
}

.footer-brand-chips span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.76rem;
    font-weight: 600;
    line-height: 1;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background-color: var(--bg-dark-accent);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.footer-col h3 {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 24px;
    position: relative;
}

.footer-col h3::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--primary);
    margin-top: 8px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
}

.footer-col ul a:hover {
    color: var(--text-light);
    padding-left: 4px;
}

.contact-col {
    background-color: var(--bg-dark-accent);
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px !important;
}

.contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.85rem;
}

.contact-details i {
    color: var(--primary);
    font-size: 1rem;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 48px;
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
    font-size: 0.8rem;
}

/* -------------------------------------------------------------
   12. FLOATING WIDGETS (WhatsApp & Toast)
------------------------------------------------------------- */
.floating-whatsapp-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
}

.floating-whatsapp-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    pointer-events: auto;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.floating-whatsapp-link:hover {
    transform: translateY(-8px);
}

.whatsapp-floating-mascot {
    width: 140px;
    height: auto;
    object-fit: contain;
    margin-bottom: -25px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: bottom center;
}

.floating-whatsapp-link:hover .whatsapp-floating-mascot {
    transform: scale(1.08) rotate(2deg) translateY(-4px);
}

.whatsapp-floating-button {
    background-color: var(--bg-dark);
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    box-shadow: 0 10px 25px -5px rgba(0, 74, 62, 0.3), var(--shadow-md);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    white-space: nowrap;
}

.floating-whatsapp-link:hover .whatsapp-floating-button {
    background-color: #00382F;
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 15px 30px -5px rgba(0, 74, 62, 0.45), var(--shadow-lg);
}

.whatsapp-floating-button i {
    font-size: 1.35rem;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Mobile responsive adjustments for the widget */
@media (max-width: 600px) {
    .floating-whatsapp-container {
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-floating-mascot {
        width: 110px;
        margin-bottom: -18px;
    }
    .whatsapp-floating-button {
        padding: 10px 18px;
        font-size: 0.85rem;
        gap: 8px;
    }
    .whatsapp-floating-button i {
        font-size: 1.15rem;
    }
}

/* Toast */
.toast {
    position: fixed;
    top: 40px;
    right: 40px;
    z-index: 10000;
    background-color: var(--bg-white);
    color: var(--text-dark);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-premium);
    display: flex;
    align-items: center;
    gap: 12px;
    border-left: 6px solid var(--primary);
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast.hide-out {
    transform: translateY(-20px);
    opacity: 0;
}

.toast.hidden {
    display: none;
}

.toast-success {
    border-left-color: #2e7d32;
}

.toast-success i {
    color: #2e7d32;
}

.toast-error {
    border-left-color: var(--primary);
}

.toast-error i {
    color: var(--primary);
}

.toast-icon {
    font-size: 1.3rem;
}

.toast-message {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
}

/* -------------------------------------------------------------
   13. ANIMATIONS
------------------------------------------------------------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1) rotate(-10deg);
    }
    50% {
        transform: scale(1.06) rotate(-10deg);
    }
}

@keyframes beat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.animate-beat {
    animation: beat 1.5s infinite;
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

/* -------------------------------------------------------------
   14. RESPONSIVE DESIGN
------------------------------------------------------------- */
@media (max-width: 1100px) {
    .solutions-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 16px;
}
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .footer-top-container {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }
    .contact-col {
        grid-column: span 4;
        margin-top: 20px;
    }
}

@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0 24px;
    }
    .hero-content {
        order: 1;
    }
    .hero-mascot {
        order: 2;
        margin-top: 30px;
        margin-bottom: 0;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .split-layout,
    .home-custom-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .home-custom-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .home-why-us-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .cara-steps-grid {
        grid-template-columns: 1fr !important;
    }
    
    .cara-steps-grid .cara-card {
        grid-column: auto !important;
    }
    
    .cara-grid-wrapper {
        grid-template-columns: 1fr;
    }
    
    .cta-box-grid {
        grid-template-columns: 1fr;
    }
    
    .form-mascot-wrapper {
        display: none;
    }
    
    /* Mobile Nav */
    .mobile-toggle {
        display: block;
    }
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-warm);
        padding: 24px;
        box-shadow: var(--shadow-lg);
        border-bottom: 1px solid rgba(197, 37, 37, 0.08);
        display: none;
    }
    .nav-menu.open {
        display: block;
    }
    .nav-menu ul {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
}

@media (max-width: 600px) {
    .hero-container {
        padding: 0 16px !important;
    }
    .hero-title {
        font-size: 2rem;
    }
    .mascot-img {
        max-height: 280px;
        transform: translateX(5%); /* Shift slightly to the right to look centered */
    }
    .order-mascot-img {
        display: none !important;
    }
    .solutions-section .solutions-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .products-section .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0 10px !important; /* Inset cards to exactly match Cara Order width */
    }
    .solutions-header-wrapper, 
    .products-header-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .home-custom-header {
        text-align: center;
    }
    .home-custom-content {
        padding-right: 0;
        align-items: center;
    }
    .home-custom-features-grid {
        grid-template-columns: 1fr;
    }
    .home-why-us-grid {
        grid-template-columns: 1fr;
    }
    .footer-top-container {
        grid-template-columns: 1fr;
    }
    .contact-col {
        grid-column: span 1;
    }
    .form-row, .form-row-2, .form-row-3, .cta-direct-form .form-row-2, .cta-direct-form .form-row-3 {
        grid-template-columns: 1fr !important;
    }
    .cta-box-grid {
        padding: 30px;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .cta-form-area {
        padding: 24px;
    }
    .lang-dropdown-container {
        margin-left: 10px;
    }
    /* On mobile: hide language label, show Ã¦â€“â€¡A icon only */
    .lang-current-label {
        display: none !important;
    }
}

/* -------------------------------------------------------------
   15. PREMIUM SCROLL REVEAL ANIMATIONS
------------------------------------------------------------- */
/* Base reveal state */
.reveal {
    opacity: 0;
    will-change: transform, opacity;
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Animations variations */
.reveal-up {
    transform: translateY(40px);
}

.reveal-bottom {
    transform: translateY(40px);
}

.reveal-down {
    transform: translateY(-40px);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal-scale {
    transform: scale(0.95);
}

/* Revealed active state */
.reveal.revealed {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Stagger system for grids / lists */
.reveal-stagger > * {
    opacity: 0;
    transform: translateY(30px);
    will-change: transform, opacity;
    transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-stagger.revealed > * {
    opacity: 1;
    transform: translateY(0);
}

/* Auto-generate transition delays for up to 12 items */
.reveal-stagger.revealed > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.revealed > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.revealed > *:nth-child(3) { transition-delay: 0.19s; }
.reveal-stagger.revealed > *:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger.revealed > *:nth-child(5) { transition-delay: 0.33s; }
.reveal-stagger.revealed > *:nth-child(6) { transition-delay: 0.4s; }
.reveal-stagger.revealed > *:nth-child(7) { transition-delay: 0.47s; }
.reveal-stagger.revealed > *:nth-child(8) { transition-delay: 0.54s; }
.reveal-stagger.revealed > *:nth-child(9) { transition-delay: 0.61s; }
.reveal-stagger.revealed > *:nth-child(10) { transition-delay: 0.68s; }
.reveal-stagger.revealed > *:nth-child(11) { transition-delay: 0.75s; }
.reveal-stagger.revealed > *:nth-child(12) { transition-delay: 0.82s; }

/* -------------------------------------------------------------
   16. CUSTOM & PRINTING DEDICATED PAGE STYLES
------------------------------------------------------------- */
/* Custom Hero Premium Layout Overrides */
#custom-hero {
    background-color: var(--bg-warm);
    min-height: calc(100vh - 72px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 0 80px 0;
}

#custom-hero .hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1.22fr 0.78fr;
    gap: 40px;
    align-items: center;
    width: 100%;
}

#custom-hero .b2b-badge {
    background-color: var(--primary);
    color: var(--text-light);
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

#custom-hero .hero-title {
    margin-bottom: 20px;
    font-size: 3.55rem;
    font-weight: 800;
    line-height: 1.15;
    font-family: var(--font-heading);
    color: var(--text-dark);
}

#custom-hero .hero-title span {
    color: var(--primary);
}

#custom-hero .hero-subtitle {
    margin-bottom: 36px;
    max-width: 620px;
    font-size: 1.05rem;
    color: var(--text-muted);
    font-family: var(--font-body);
    line-height: 1.65;
}

#custom-hero .hero-actions {
    margin-bottom: 44px;
    display: flex;
    gap: 16px;
}

/* Horizontal mini feature grid under hero buttons */
#custom-hero .custom-features-mini-grid {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    background-color: var(--bg-white);
    padding: 20px 24px;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(193, 54, 39, 0.08);
    border: 1px solid rgba(193, 54, 39, 0.1);
    width: max-content;
    max-width: none;
    gap: 32px;
    position: relative;
    z-index: 10;
    margin-top: 30px;
}

#custom-hero .mini-feat-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
    min-width: 0;
}

#custom-hero .mini-feat-pill:hover {
    transform: none;
    border-color: transparent;
    box-shadow: none;
}

#custom-hero .mascot-img {
    margin-bottom: -20px;
}

#custom-hero .pill-placeholder-box,
#custom-hero .pill-icon-custom {
    position: relative;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

#custom-hero .pill-icon-custom img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

#custom-hero .placeholder-cross {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: rgba(126, 112, 106, 0.22);
    fill: var(--bg-white);
}

#custom-hero .pill-icon-overlay {
    color: var(--primary);
    font-size: 1rem;
    z-index: 1;
}

#custom-hero .pill-text-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.25;
    min-width: 0;
    overflow: hidden;
}

#custom-hero .pill-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.86rem;
    color: var(--text-dark);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 100%;
}

#custom-hero .pill-desc {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 500;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 100%;
}

/* Responsive styles for Custom Printing hero */
@media (max-width: 1250px) {
    #custom-hero .hero-container {
        padding: 0 32px;
        gap: 40px;
    }
    #custom-hero .hero-title {
        font-size: 3.2rem;
    }
}

@media (max-width: 1024px) {
    #custom-hero {
        padding: 40px 0 60px 0;
    }
    #custom-hero .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    #custom-hero .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    #custom-hero .hero-title {
        font-size: 3rem;
    }
    #custom-hero .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    #custom-hero .hero-actions {
        justify-content: center;
    }
    
    /* Unified Features Section Responsive */
    .unified-top-row {
        grid-template-columns: 1fr;
    }
    
    .unified-custom-printing .home-custom-features-grid {
        max-width: 100%;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .unified-custom-printing .home-custom-mascot-wrapper {
        position: relative;
        top: auto;
        bottom: 0;
        right: 0;
        transform: none;
        margin-top: 30px;
        margin-left: auto;
        margin-right: auto;
        width: 250px;
        display: flex;
        justify-content: center;
    }
    
    .unified-why-us .home-why-us-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    #custom-hero .custom-features-mini-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .unified-why-us .home-why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    #custom-hero .hero-container {
        padding: 0 20px;
    }
    #custom-hero .hero-title {
        font-size: 2.3rem;
    }
    #custom-hero .custom-features-mini-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    #custom-hero .mini-feat-pill {
        padding: 14px 18px;
    }
    #custom-hero .pill-title {
        font-size: 0.95rem;
    }
    #custom-hero .pill-desc {
        font-size: 0.78rem;
    }
    
    .unified-custom-printing {
        padding: 24px;
    }
    
    .unified-custom-printing .home-custom-features-grid {
        grid-template-columns: 1fr;
    }
    
    .unified-why-us .home-why-us-grid {
        grid-template-columns: 1fr;
    }
}

/* Custom buttons */
.btn-consult-red {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--primary); /* #C13627 */
    color: var(--text-light) !important;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 24px 40px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

.btn-consult-red:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--bg-white);
    color: var(--primary);
    font-size: 0.7rem;
    margin-left: 6px;
    flex-shrink: 0;
}

.btn-icon-circle-green {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 4px;
    background: transparent;
    color: var(--bg-dark);
    font-size: 0.8rem;
    margin-left: 8px;
    flex-shrink: 0;
    border: 1px solid var(--bg-dark);
    transition: var(--transition);
}

.btn-outline-green {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1.5px solid var(--bg-dark); /* #004A3E */
    color: var(--bg-dark) !important;
    background-color: transparent;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 24px 40px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    cursor: pointer;
}

.btn-outline-green:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

.btn-outline-green:hover .btn-icon-circle-green {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.btn-detail-red {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--primary); /* #C13627 */
    color: var(--text-light) !important;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 10px 16px;
    border-radius: var(--radius-md);
    width: 100%;
    transition: var(--transition);
}

.btn-detail-red:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

/* Horizontal mini feature grid under hero buttons */
.custom-features-mini-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 40px;
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    border: none;
    box-shadow: none;
}

.mini-feat-pill {
    display: flex;
    align-items: center;
    gap: 14px;
    background-color: var(--bg-white);
    padding: 14px 18px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.mini-feat-pill:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.pill-placeholder-box {
    position: relative;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.placeholder-cross {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: rgba(126, 112, 106, 0.22);
    fill: var(--bg-white);
}

.pill-icon-overlay {
    color: var(--primary);
    font-size: 1.1rem;
    z-index: 1;
}

.pill-text-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.3;
}

.pill-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.pill-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Customizable products grid (5 Columns) */
.custom-products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
}

/* Custom Services grid (5 Columns) */
.custom-services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
}

.service-card {
    background-color: var(--bg-white);
    border: 2px solid #FFE9D1;
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    text-align: center;
    box-shadow: 0 5px 20px #FFE9D1;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px #FFE9D1;
}

.service-img-wrapper {
    position: relative;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    background-color: var(--primary-light);
    border: 1px solid rgba(193, 54, 39, 0.12);
    border-radius: 50%;
    transition: var(--transition);
}

.service-icon-overlay {
    color: var(--primary);
    font-size: 2.25rem;
    z-index: 1;
    transition: var(--transition);
}

.service-card:hover .service-img-wrapper {
    background-color: var(--primary);
    border-color: var(--primary);
    transform: scale(1.05);
}

.service-card:hover .service-icon-overlay {
    color: var(--text-light);
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-dark);
}

/* Printing Methods Grid (Compact 4-Column Layout on Desktop) */
.printing-methods-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.method-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    background-color: var(--bg-white);
    color: var(--text-dark);
    padding: 24px 18px;
    border: 2px solid #FFE9D1;
    border-radius: var(--radius-lg);
    box-shadow: 0 5px 20px #FFE9D1;
    transition: var(--transition);
    height: 100%;
}

.method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px #FFE9D1;
}

.method-left-box {
    position: relative;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: var(--primary-light);
    border: 1px solid rgba(193, 54, 39, 0.12);
    border-radius: 50%;
    transition: var(--transition);
}

.method-icon-overlay {
    color: var(--primary);
    font-size: 1.75rem;
    z-index: 1;
    transition: var(--transition);
}

.method-card:hover .method-left-box {
    background-color: var(--primary);
    border-color: var(--primary);
    transform: scale(1.05);
}

.method-card:hover .method-icon-overlay {
    color: var(--text-light);
}

.method-right-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    align-items: center;
    width: 100%;
}

.method-right-content h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
}

.method-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}

.method-bullets li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.3;
}

.bullet-dot {
    color: var(--primary);
    font-weight: bold;
    font-size: 1rem;
}

/* Responsive styles for Custom Printing layout grids */
@media (max-width: 1100px) {
    .custom-products-grid,
    .custom-services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .printing-methods-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .custom-features-mini-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .custom-products-grid,
    .custom-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .printing-methods-grid {
        grid-template-columns: 1fr;
    }
    .method-card {
        flex-direction: column;
        text-align: center;
    }
    .method-right-content {
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 600px) {
    .custom-features-mini-grid {
        grid-template-columns: 1fr;
    }
    .custom-products-grid,
    .custom-services-grid {
        grid-template-columns: 1fr;
    }
}

/* -------------------------------------------------------------
   17. HOMEPAGE HERO VISUAL ALIGNMENT OVERRIDES
------------------------------------------------------------- */
.solution-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--text-dark); /* #333333 */
}
.solution-breadcrumbs a {
    color: var(--primary-green); /* #004A3E */
    text-decoration: none;
    transition: color 0.2s ease;
}
.solution-breadcrumbs a:hover {
    color: var(--primary); /* Red */
}
.solution-breadcrumbs .sep {
    color: #666;
    font-size: 0.9rem;
}
.solution-breadcrumbs .current {
    color: var(--primary); /* Solid Red */
    font-weight: 600;
}

.b2b-badge-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.b2b-badge-leaves {
    position: absolute;
    top: -25px;
    right: -24px;
    width: 32px;
    height: auto;
    z-index: 2;
    pointer-events: none;
    transform: scaleX(-1) rotate(5deg);
}

#home .b2b-badge,
.contact-hero-section .b2b-badge {
    background-color: var(--primary); /* Solid Red */
    color: var(--text-light); /* White */
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0; /* Moved to wrapper */
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 1;
}

#home .hero-actions .btn-primary {
    background-color: var(--primary); /* #C13627 */
    color: var(--text-light);
    border-radius: var(--radius-md); /* 16px */
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

#home .hero-actions .btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

#home .hero-actions .btn-secondary {
    background-color: transparent;
    color: var(--bg-dark) !important; /* Deep Green #004A3E */
    border: 1.5px solid var(--bg-dark);
    border-radius: var(--radius-md); /* 16px */
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

#home .hero-actions .btn-secondary i,
#home .hero-actions .btn-secondary svg {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px;
    font-size: 18px !important;
    color: var(--bg-dark) !important;
    fill: currentColor !important;
    stroke: currentColor;
    flex: 0 0 18px;
}

#home .hero-actions .btn-secondary svg path {
    fill: currentColor !important;
}

#home .hero-actions .btn-secondary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}


/* =========================================
   RECOVERED CSS (ELEMENTOR WIDTH & HERO RIBBON)
   ========================================= */

/* 1. Fix Elementor Boxed Container Width (Restore 1400px width) */
.elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 1400px !important;
}

.section-container {
    max-width: 1400px !important;
    width: 100%;
    margin: 0 auto;
}

/* 2. Fix Hero Features Ribbon Layout */
.features-ribbon {
    position: relative;
    z-index: 10;
    margin-top: 120px; /* Increased to push container lower */
    margin-bottom: -120px; /* Adjust overlap */
    width: 100%;
}

body.home #home .features-ribbon,
body.front-page #home .features-ribbon {
    margin-bottom: 44px !important; /* Force a clear cream gap before the solutions card. */
}

body.home .solutions-section .section-container,
body.front-page .solutions-section .section-container {
    padding-top: 0 !important;
}

body.home .solutions-section,
body.front-page .solutions-section {
    margin-bottom: 16px !important;
}

body.home .unified-features-section .section-container,
body.front-page .unified-features-section .section-container {
    padding-top: 0 !important;
}

body.home .unified-custom-printing.reveal-up,
body.front-page .unified-custom-printing.reveal-up {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .sanpota-article-container {
        width: min(100% - 28px, 980px);
    }

    .sanpota-article-hero {
        padding: 34px 0 24px;
    }

    .sanpota-article-back {
        margin-bottom: 18px;
    }

    .sanpota-article-shell {
        margin: 22px 0 38px;
        padding: 20px 16px;
        border-radius: 16px;
    }

    .sanpota-article-content {
        font-size: 0.96rem;
        line-height: 1.72;
    }

    .sanpota-article-content h2 {
        font-size: 1.28rem;
    }

    .sanpota-article-summary,
    .sanpota-article-note {
        padding: 15px 15px 15px 50px;
    }

    .sanpota-article-summary::before,
    .sanpota-article-note::before {
        top: 15px;
        left: 14px;
    }

    .sanpota-article-content li {
        padding: 11px 12px 11px 40px;
    }

    .sanpota-article-content table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        border-radius: 12px;
    }

    .sanpota-article-content th,
    .sanpota-article-content td {
        padding: 12px 13px;
    }

    body.home .home-articles-section {
        padding: 4px 0 12px;
        overflow: hidden;
    }

    body.home .home-articles-section .section-container {
        width: 100%;
        max-width: 100%;
        padding: 0 18px;
        box-sizing: border-box;
    }

    body.home .home-articles-header {
        margin-bottom: 14px;
        text-align: center;
    }

    body.home .home-articles-header h2 {
        font-size: 1.75rem;
        line-height: 1.16;
    }

    body.home .home-articles-header p {
        font-size: 0.9rem;
    }

    body.home .home-articles-grid {
        display: flex;
        gap: 12px;
        width: calc(100% + 18px);
        margin-right: -18px;
        overflow-x: auto;
        padding: 0 34px 4px 0;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
    }

    body.home .home-articles-grid::-webkit-scrollbar {
        display: none;
    }

    body.home .home-article-card {
        flex: 0 0 78%;
        border-radius: 16px;
        scroll-snap-align: start;
    }

    body.home .home-article-image {
        height: auto;
    }

    body.home .home-article-content {
        padding: 13px 14px 15px;
    }

    body.home .home-article-content h3 {
        font-size: 1rem;
    }

    body.home .home-articles-controls {
        justify-content: flex-start;
        margin-top: 12px;
    }

    body.home .home-articles-arrow {
        width: 38px;
        height: 38px;
    }

}

.features-container {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    background: #ffffff;
    border-radius: 20px; /* Reverted to 20px */
    padding: 12px 40px; /* Thinner height */
    box-shadow: 0 10px 30px rgba(193, 54, 39, 0.08);
    width: 100%;
    max-width: 1300px; /* Align with hero content edges */
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 45px !important;
    height: 45px !important;
    object-fit: contain;
}

/* Make supply rutin icon the exact same size */
.feature-icon.feature-supply-icon img.supply-icon {
    width: 45px !important;
    height: 45px !important;
    transform: none !important;
}

.feature-info {
    display: flex;
    flex-direction: column;
}

.feature-info h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #2d2d2d;
    line-height: 1.2;
}

.feature-info p {
    margin: 4px 0 0 0;
    font-size: 13px;
    font-weight: 400;
    color: #777777;
    line-height: 1.2;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .features-container {
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 20px;
        border-radius: 30px;
    }
}

@media (max-width: 768px) {
    .partners-slider::before,
    .partners-slider::after {
        width: 30px; /* Reduce gradient fade on mobile so logos are clearly visible */
    }
    .features-container {
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 30px;
        width: max-content; /* Ensure the block shrinks to content width */
        margin: 0 auto; /* Center the block horizontally */
    }
    .features-ribbon {
        margin-bottom: 0;
    }
}

/* =========================================
   ELEMENTOR EDITOR FIXES
   ========================================= */
body.elementor-editor-active .features-ribbon {
    margin-bottom: 40px !important; /* Prevent clipping by editor bounding box */
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 9999 !important;
}
body.elementor-editor-active .reveal,
body.elementor-editor-active .reveal-scale,
body.elementor-editor-active .reveal-left,
body.elementor-editor-active .reveal-right,
body.elementor-editor-active .reveal-up,
body.elementor-editor-active .reveal-down {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}
body.elementor-editor-active .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}
/* =========================================
   ELEMENTOR EDITOR FIXES
   ========================================= */
body.elementor-editor-active .features-ribbon,
body.elementor-editor-preview .features-ribbon {
    margin-bottom: 40px !important; /* Prevent clipping by editor bounding box */
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 9999 !important;
}

body.elementor-editor-active .reveal,
body.elementor-editor-active .reveal-scale,
body.elementor-editor-active .reveal-left,
body.elementor-editor-active .reveal-right,
body.elementor-editor-active .reveal-up,
body.elementor-editor-active .reveal-down,
body.elementor-editor-preview .reveal,
body.elementor-editor-preview .reveal-scale,
body.elementor-editor-preview .reveal-left,
body.elementor-editor-preview .reveal-right,
body.elementor-editor-preview .reveal-up,
body.elementor-editor-preview .reveal-down {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

body.elementor-editor-active .reveal-stagger > *,
body.elementor-editor-preview .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}
/* =========================================
   FOOTER CTA RECOVERY CSS
   ========================================= */
.cta-box-grid {
    display: grid !important;
    grid-template-columns: 0.9fr 1.3fr 100px !important; /* Shrunk form a tiny bit more, buffer to 100px */
    gap: 30px; /* Increased gap so the form doesn't crush the 3rd feature */
    background-color: #C13627;
    border-radius: 20px;
    padding: 50px 20px; /* Reduced padding to push text further to the left edge */
    position: relative;
    overflow: hidden !important;
    max-width: 1304px !important; /* Matched to the global Elementor container width */
    margin: 0 auto;
    width: 100%;
    align-items: center;
}

.cta-bg-shapes {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.cta-left-content {
    color: #ffffff;
    z-index: 2;
}

.cta-left-content h2 {
    font-size: 28px; /* Reduced from 34px so it fits on one line */
    font-weight: 800;
    margin-bottom: 12px;
    color: #ffffff;
    line-height: 1.3;
}

.cta-left-content p {
    font-size: 15px;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-features-row {
    display: flex;
    gap: 15px; /* Relaxed gap to balance the spacing between features */
    align-items: flex-start;
}

.cta-feature-col {
    display: flex;
    flex-direction: row; /* Changed to row to place icon beside text */
    gap: 8px; /* Pulled icon closer to text */
    width: 33.333%;
    align-items: flex-start;
}

.cta-feat-icon-box img {
    max-width: 40px;
}

.cta-feat-text-box strong {
    display: block;
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 6px;
    font-weight: 700;
}

.cta-feat-text-box span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

.cta-right-content {
    z-index: 2;
    padding-right: 0px; /* Buffer is now handled by the 3rd grid column */
}

.cta-right-mascot {
    position: relative !important;
    align-self: stretch !important;
    z-index: 1;
}

.cta-large-mascot {
    position: absolute !important;
    width: 250px !important;
    max-width: none !important;
    right: -80px !important; /* Shifted left from -110px */
    bottom: -50px !important;
    object-fit: contain !important;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15)) !important;
}

/* CTA Form Layout */
.cta-direct-form .form-row-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 15px;
}
.cta-direct-form .form-row-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}
.form-group-white label {
    display: block;
    color: #ffffff;
    font-size: 14px; /* Increased font size for form labels */
    font-weight: 600;
    margin-bottom: 8px;
}
.form-group-white input, .form-group-white select {
    width: 100%;
    padding: 10px 14px;
    border: none;
    border-radius: 8px;
    font-size: 13px;
}
.cta-submit-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cta-consent-text {
    color: rgba(255,255,255,0.8);
    font-size: 11px;
}
.cta-consent-text a {
    color: #ffffff;
    text-weight: 600;
}
.btn-consultation-yellow {
    background: #F4B214;
    color: var(--bg-dark); /* Changed to green footer color */
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Mobile overrides for CTA */
@media (max-width: 1024px) {
    .cta-box-grid {
        grid-template-columns: 1fr !important;
        padding: 40px;
        gap: 20px !important;
    }
    .cta-direct-form {
        display: flex;
        flex-direction: column;
    }
    .cta-submit-row {
        display: contents;
    }
    .cta-consent-text {
        order: -1;
        margin-bottom: 20px !important;
        text-align: center;
    }
    .cta-direct-form .form-row-3 {
        order: 1;
        grid-template-columns: 1fr !important;
    }
    .cta-direct-form .form-row-2 {
        order: 2;
        grid-template-columns: 1fr !important;
    }
    #submit-btn {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 15px;
    }
    .cta-features-row {
        flex-wrap: wrap;
    }
    .cta-feature-col {
        width: 100%;
        flex-direction: row;
        align-items: center;
    }
    .cta-right-mascot {
        display: none;
    }
}

/* --- GLOBAL MOBILE ALIGNMENT --- */
@media (max-width: 768px) {
    /* Strip Elementor's inconsistent column paddings so our CSS containers control the width perfectly */
    .elementor-element-populated,
    .elementor-column-wrap,
    .elementor-widget-wrap {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .section-container,
    .hero-container {
        padding-left: 28px !important;
        padding-right: 28px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    /* Remove horizontal padding from inner wrappers so they sit flush with the container */
    .hero-content-wrapper,
    .unified-bottom-row,
    .home-custom-content,
    .cara-order-card {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    /* Standardize internal padding for cards so text aligns */
    .unified-custom-printing,
    .solution-card,
    .cta-box-grid {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 28px !important;
        padding-right: 28px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Center Cara Order title */
    .cara-header,
    .cara-header h2 {
        text-align: center;
        justify-content: center;
    }
}

/* Hide TranslatePress default floating switcher Ã¢â‚¬â€ we use our own custom switcher */
#trp-floater-rs,
.trp-language-switcher-container,
.trp-ls-shortcode-container {
    display: none !important;
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 768px) {
    html:has(body.home),
    body.home,
    body.home #page,
    body.home .site,
    body.home .elementor,
    body.home .elementor-section,
    body.home .elementor-container,
    body.home .elementor-column,
    body.home .elementor-widget-wrap,
    body.home .elementor-widget,
    body.home .elementor-widget-container,
    body.home .hero-section,
    body.home section,
    body.home footer {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
        overflow-x: clip !important;
    }

    body.home .hero-container,
    body.home .container,
    body.home .section-container,
    body.home .split-layout,
    body.home .home-custom-grid,
    body.home .home-why-us-grid,
    body.home .solutions-grid,
    body.home .products-grid,
    body.home .features-container,
    body.home .cta-box-grid {
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }
}

@media (max-width: 768px) {
    body.home #footer-cta.footer-cta-section {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        transform: none !important;
        left: auto !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        overflow: visible !important;
    }

    body.home #footer-cta .section-container.cta-box-grid {
        width: calc(100% - 16px) !important;
        max-width: 359px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding: 30px 18px !important;
        border-radius: 20px !important;
        box-shadow: none !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        overflow: hidden !important;
    }

    body.home #footer-cta .cta-direct-form,
    body.home #footer-cta .cta-direct-form .form-row-2,
    body.home #footer-cta .cta-direct-form .form-row-3,
    body.home #footer-cta .form-group-white,
    body.home #footer-cta .form-group-white input,
    body.home #footer-cta .form-group-white select {
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }
}

@media (max-width: 390px) {
    body.home #footer-cta .section-container.cta-box-grid {
        width: calc(100% - 16px) !important;
        padding-left: 18px !important;
        padding-right: 18px !important;
    }
}



/* =========================================================
   HOW TO ORDER - READY STOCK WIDGET
   ========================================================= */
.sanpota-hto-section {
    padding: 20px 0; /* Dikurangi agar jarak antar widget tidak terlalu jauh */
}
.sanpota-hto-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
}
.sanpota-hto-header {
    margin-bottom: 30px;
}
.sanpota-hto-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #b73225; /* Warna utama judul */
}

/* Container utama (yang membungkus semua kotak) */
.sanpota-hto-steps-wrapper {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    background: #ffffff;
    border: 1px solid #FFE9D1; /* Stroke ringan untuk container */
    border-radius: 20px;
    padding: 24px 32px;
    box-shadow: 0 6px 10px #FFE9D1; /* Shadow sesuai permintaan terbaru (X:0, Y:6, Blur:10) */
    gap: 15px;
}

/* Card individual (step) */
.sanpota-hto-step {
    flex: 1;
    background: #FFF6ED; /* Warna background card dari user */
    border: 2px solid #FFE9D1; /* Stroke weight 2 dari user */
    border-radius: 12px;
    padding: 30px 16px 20px; /* Ruang atas untuk badge */
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Nomor bulat di sudut kiri atas */
.sanpota-hto-step-badge {
    position: absolute;
    top: -16px;
    left: -16px;
    width: 32px;
    height: 32px;
    background: #b73225; /* Warna merah */
    color: #fff;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(183, 50, 37, 0.3);
}

.sanpota-hto-step-icon-wrap {
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.sanpota-hto-step-icon {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.sanpota-hto-step-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1b5341; /* Hijau tua */
    margin-bottom: 8px;
    line-height: 1.3;
}

.sanpota-hto-step-desc {
    font-size: 0.75rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

/* Panah antar card */
.sanpota-hto-step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
}
.sanpota-hto-step-arrow svg path {
    stroke: #1b5341 !important; /* Warna hijau untuk panah */
}

/* Responsif */
@media (max-width: 1199px) {
    .sanpota-hto-steps-wrapper {
        flex-wrap: wrap;
        justify-content: center;
        gap: 24px;
        padding: 32px 24px;
    }
    .sanpota-hto-step {
        flex: 0 0 calc(33.333% - 40px);
    }
    .sanpota-hto-step-arrow {
        display: none;
    }
}
@media (max-width: 768px) {
    .sanpota-hto-container { padding: 0 16px; }
    .sanpota-hto-step { flex: 0 0 calc(50% - 20px); }
}
@media (max-width: 480px) {
    .sanpota-hto-step { flex: 0 0 100%; }
}
