/*:root {*/
/*    --primary-orange: #FF8300;*/
/*    --dark-brown: #3D2314;*/
/*    --light-gray: #F5F5F5;*/
/*    --border-gray: #E3E3E3;*/
/*}*/

/** {*/
/*    font-family: 'Poppins', sans-serif;*/
/*    box-sizing: border-box;*/
/*}*/

/*body {*/
/*    background-color: #F8F9FA;*/
/*    min-height: 100vh;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*}*/

/* Main container - RESPONSIVE */
/*.main-container {*/
/*    width: 100%;*/
/*    max-width: 100%;*/
/*    margin: 0 auto;*/
/*    padding: 20px;*/
/*    flex: 1;*/
/*    background-color: #FFFFFF;*/
/*    border-radius: 16px;*/
/*    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);*/
/*}*/

/* Desktop (larger screens) */
/*@media (min-width: 992px) {*/
/*    .main-container {*/
/*        max-width: 800px;*/
/*        padding: 40px 60px;*/
/*        margin-top: 24px;*/
/*        margin-bottom: 24px;*/
/*    }*/
/*}*/

/* Tablet */
/*@media (min-width: 768px) and (max-width: 991px) {*/
/*    .main-container {*/
/*        max-width: 700px;*/
/*        padding: 30px 40px;*/
/*        margin-top: 20px;*/
/*        margin-bottom: 20px;*/
/*    }*/
/*}*/

/* Mobile */
/*@media (max-width: 767px) {*/
/*    .main-container {*/
/*        padding: 16px;*/
/*        border-radius: 0;*/
/*        box-shadow: none;*/
/*    }*/
/*}*/

/* Header */
/*.header {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: space-between;*/
/*    margin-bottom: 30px;*/
/*    flex-wrap: wrap;*/
/*    gap: 12px;*/
/*}*/

/* Header Right - wrapper untuk progress dan bendera */
/*.header-right {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 16px;*/

/*}*/

/*.logo {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 8px;*/
/*    transition: transform 0.3s ease;*/
/*}*/

/*.logo:hover {*/
/*    transform: scale(1.05);*/
/*}*/

/*.logo-img {*/
/*    height: 48px;*/
/*    width: auto;*/
/*    transition: transform 0.3s ease;*/
/*}*/

/*@media (max-width: 480px) {*/
/*    .logo-img {*/
/*        height: 36px;*/
/*    }*/

/*    .header-right {*/
/*        order: 3;*/
/*        flex: 1 0 100%;*/
/*        justify-content: space-between;*/
/*    }*/
/*}*/

/* Progress Bar */
/*.progress-section {*/
/*    max-width: 400px;*/
/*    min-width: 300px;*/
/*}*/

/*@media (max-width: 480px) {*/
/*    .progress-section {*/
/*        order: 3;*/
/*        flex: 1 0 100%;*/
/*        max-width: 100%;*/
/*        margin: 12px 0 0 0;*/
/*    }*/
/*}*/

/*.progress-bar-custom {*/
/*    height: 8px;*/
/*    background-color: var(--border-gray);*/
/*    border-radius: 4px;*/
/*    overflow: hidden;*/
/*}*/

/*.progress-bar-fill {*/
/*    height: 100%;*/
/*    background: linear-gradient(90deg, var(--primary-orange), #FFB84D);*/
/*    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);*/
/*}*/

/*.progress-text {*/
/*    font-size: 12px;*/
/*    color: #666;*/
/*    text-align: left;*/
/*    margin-top: 4px;*/
/*}*/

/* Language Selector Dropdown - Custom */
/*.language-selector {*/
/*    position: relative;*/
/*    z-index: 9999;*/
/*}*/

/*.language-dropdown {*/
/*    position: relative;*/
/*    cursor: pointer;*/
/*    user-select: none;*/
/*}*/

/*.selected-lang {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    background-color: #f5f5f5;*/
/*    border: 2px solid var(--border-gray);*/
/*    border-radius: 50%;*/
/*    padding: 0;*/
/*    width: 40px;*/
/*    height: 40px;*/
/*    transition: all 0.3s ease;*/
/*    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);*/
/*    position: relative;*/
/*    overflow: hidden;*/
/*}*/

/*.selected-lang:hover {*/
/*    border-color: var(--primary-orange);*/
/*    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);*/
/*}*/

/*.flag-circle {*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    border-radius: 50%;*/
/*    object-fit: cover;*/
/*    object-position: center;*/
/*}*/

/*.chevron {*/
/*    display: none;*/
/*}*/

/*.language-options {*/
/*    position: absolute;*/
/*    top: calc(100% + 8px);*/
/*    right: 0;*/
/*    background: white;*/
/*    border-radius: 12px;*/
/*    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);*/
/*    min-width: 200px;*/
/*    opacity: 0;*/
/*    visibility: hidden;*/
/*    transform: translateY(-10px);*/
/*    transition: all 0.3s ease;*/
/*    z-index: 9999;*/
/*    overflow: hidden;*/
/*}*/

/*.language-dropdown.active .language-options {*/
/*    opacity: 1;*/
/*    visibility: visible;*/
/*    transform: translateY(0);*/
/*}*/

/*.lang-option {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 12px;*/
/*    padding: 12px 16px;*/
/*    cursor: pointer;*/
/*    transition: background-color 0.2s ease;*/
/*    position: relative;*/
/*}*/

/*.lang-option:hover {*/
/*    background-color: rgba(255, 131, 0, 0.05);*/
/*}*/

/*.lang-option.selected {*/
/*    background-color: rgba(255, 131, 0, 0.1);*/
/*}*/

/*.lang-option .flag-circle {*/
/*    width: 32px;*/
/*    height: 32px;*/
/*    flex-shrink: 0;*/
/*    transform: none;*/
/*    border: 2px solid var(--border-gray);*/
/*    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);*/
/*}*/

/*.lang-text {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    flex: 1;*/
/*}*/

/*.lang-name {*/
/*    font-size: 14px;*/
/*    font-weight: 600;*/
/*    color: var(--dark-brown);*/
/*    line-height: 1.2;*/
/*}*/

/*.lang-code {*/
/*    font-size: 12px;*/
/*    color: #666;*/
/*    line-height: 1.2;*/
/*}*/

/*.checkmark {*/
/*    font-size: 16px;*/
/*    color: var(--primary-orange);*/
/*    opacity: 0;*/
/*    transition: opacity 0.2s ease;*/
/*}*/

/*.lang-option.selected .checkmark {*/
/*    opacity: 1;*/
/*}*/

/* Step Title with animation */
/*.step-title {*/
/*    font-size: 28px;*/
/*    font-weight: 700;*/
/*    color: var(--dark-brown);*/
/*    margin-bottom: 24px;*/
/*    animation: fadeInDown 0.5s ease-out;*/
/*}*/

/*@keyframes fadeInDown {*/
/*    from {*/
/*        opacity: 0;*/
/*        transform: translateY(-20px);*/
/*    }*/

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

/*@keyframes fadeIn {*/
/*    from {*/
/*        opacity: 0;*/
/*        transform: translateY(10px);*/
/*    }*/

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

/* Form Labels */
/*.form-label-custom {*/
/*    font-size: 14px;*/
/*    font-weight: 600;*/
/*    color: var(--dark-brown);*/
/*    margin-bottom: 8px;*/
/*    display: block;*/
/*}*/

/*.form-label-custom .required {*/
/*    color: var(--primary-orange);*/
/*}*/

/* Form Inputs with enhanced transitions */
/*.form-control-custom {*/
/*    width: 100%;*/
/*    border: 2px solid var(--border-gray);*/
/*    border-radius: 12px;*/
/*    padding: 16px;*/
/*    font-size: 14px;*/
/*    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);*/
/*    background-color: #fff;*/
/*    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);*/
/*    min-height: 58px;*/
/*}*/

/*.form-control-custom:hover {*/
/*    border-color: var(--primary-orange);*/
/*}*/

/*.form-control-custom:focus {*/
/*    border-color: var(--primary-orange);*/
/*    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);*/
/*    outline: none !important;*/
/*}*/

/* Error state untuk input */
/*.form-control-custom.error {*/
/*    border-color: #dc3545 !important;*/
/*    background-color: #fff5f5;*/
/*}*/

/*.form-control-custom.error:focus {*/
/*    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);*/
/*}*/

/* Error message styling */
/*.error-message {*/
/*    display: none;*/
/*    color: #dc3545;*/
/*    font-size: 13px;*/
/*    margin-top: 6px;*/
/*    font-weight: 500;*/
/*    animation: slideDown 0.3s ease-out;*/
/*}*/

/*.error-message.show {*/
/*    display: block;*/
/*}*/

/*.error-message i {*/
/*    margin-right: 4px;*/
/*}*/

/* Custom Radio/Checkbox with enhanced animations */
/*.option-item {*/
/*    display: flex;*/
/*    align-items: flex-start;*/
/*    padding: 16px;*/
/*    border: 2px solid var(--border-gray);*/
/*    border-radius: 12px;*/
/*    margin-bottom: 12px;*/
/*    cursor: pointer;*/
/*    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);*/
/*    animation: fadeIn 0.4s ease-out;*/
/*    animation-fill-mode: both;*/
/*    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);*/
/*}*/

/* Restore margin for direct children of form-section (Step 1 - Stacked) */
/*.form-section>.option-item {*/
/*    margin-bottom: 12px;*/
/*}*/

/*.option-item:nth-child(1) {*/
/*    animation-delay: 0.05s;*/
/*}*/

/*.option-item:nth-child(2) {*/
/*    animation-delay: 0.1s;*/
/*}*/

/*.option-item:nth-child(3) {*/
/*    animation-delay: 0.15s;*/
/*}*/

/*.option-item:nth-child(4) {*/
/*    animation-delay: 0.2s;*/
/*}*/

/*.option-item:nth-child(5) {*/
/*    animation-delay: 0.25s;*/
/*}*/

/*.option-item:nth-child(6) {*/
/*    animation-delay: 0.3s;*/
/*}*/

/*.option-item:hover {*/
/*    border-color: var(--primary-orange);*/
/*    background-color: rgba(245, 166, 35, 0.03);*/
/*    transform: translateX(4px);*/
/*    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);*/
/*}*/

/*.option-item:active {*/
/*    transform: translateX(2px) scale(0.99);*/
/*}*/

/*.option-item.selected {*/
/*    border-color: var(--primary-orange);*/
/*    background-color: rgba(245, 166, 35, 0.08);*/
/*}*/

/*.option-radio,*/
/*.option-checkbox {*/
/*    width: 24px;*/
/*    height: 24px;*/
/*    min-width: 24px;*/
/*    border: 2px solid var(--border-gray);*/
/*    border-radius: 50%;*/
/*    margin-right: 12px;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);*/
/*}*/

/*.option-checkbox {*/
/*    border-radius: 6px;*/
/*}*/

/*.option-item:hover .option-radio,*/
/*.option-item:hover .option-checkbox {*/
/*    border-color: var(--primary-orange);*/
/*}*/

/*.option-item.selected .option-radio,*/
/*.option-item.selected .option-checkbox {*/
/*    background-color: var(--primary-orange);*/
/*    border-color: var(--primary-orange);*/
/*    transform: scale(1.1);*/
/*}*/

/*.option-item.selected .option-radio::after {*/
/*    content: '';*/
/*    width: 8px;*/
/*    height: 8px;*/
/*    background: white;*/
/*    border-radius: 50%;*/
/*    animation: popIn 0.3s ease-out;*/
/*}*/

/* Checkbox icon dihandle oleh JavaScript, tidak perlu CSS ::after */

/*@keyframes popIn {*/
/*    0% {*/
/*        transform: scale(0);*/
/*        opacity: 0;*/
/*    }*/

/*    50% {*/
/*        transform: scale(1.2);*/
/*    }*/

/*    100% {*/
/*        transform: scale(1);*/
/*        opacity: 1;*/
/*    }*/
/*}*/

/*.option-label {*/
/*    font-size: 14px;*/
/*    color: var(--dark-brown);*/
/*    line-height: 1.5;*/
/*}*/

/*.option-sublabel {*/
/*    font-size: 12px;*/
/*    color: #666;*/
/*}*/

/* Conditional Fields with animation */
/*.conditional-fields {*/
/*    display: none;*/
/*    padding-left: 36px;*/
/*    margin-top: 12px;*/
/*    opacity: 0;*/
/*    transform: translateY(-10px);*/
/*}*/

/*.conditional-fields.show {*/
/*    display: block;*/
/*    animation: slideDown 0.3s ease-out forwards;*/
/*}*/

/* Pastikan label di conditional fields punya styling yang sama */
/*.conditional-fields .form-label-custom {*/
/*    font-size: 14px;*/
/*    font-weight: 600;*/
/*    color: var(--dark-brown);*/
/*    margin-bottom: 8px;*/
/*}*/

/* Styling khusus untuk input "Lainnya" agar terlihat menyatu */
/*.lainnya-input-container {*/
/*    display: none;*/
/*    padding-left: 36px;*/
    /* Indentasi sejajar dengan conditional fields lainnya */
/*    margin-top: 8px;*/
    /* Jarak kecil dari checkbox di atasnya */
/*    margin-bottom: 12px;*/
/*    opacity: 0;*/
/*    transform: translateY(-10px);*/
/*}*/

/*.lainnya-input-container.show {*/
/*    display: block;*/
/*    animation: slideDown 0.3s ease-out forwards;*/
/*}*/

/* Pastikan semua input punya tinggi yang konsisten */
/*.conditional-fields .form-control-custom,*/
/*.lainnya-input-container .form-control-custom {*/
/*    min-height: 58px;*/
/*    height: auto;*/
    /* Biarkan auto untuk textarea jika ada */
/*    padding: 16px;*/
    /* Pastikan padding konsisten */
/*}*/

/* Khusus untuk input text biasa, paksa height 58px */
/*.conditional-fields input[type="text"].form-control-custom,*/
/*.lainnya-input-container input[type="text"].form-control-custom {*/
/*    height: 58px;*/
/*}*/

/*@keyframes slideDown {*/
/*    to {*/
/*        opacity: 1;*/
/*        transform: translateY(0);*/
/*    }*/
/*}*/

/* Card Options (for Furniture Type) */
/*.furniture-cards {*/
/*    display: flex;*/
/*    gap: 16px;*/
/*    margin-bottom: 24px;*/
/*    flex-wrap: wrap;*/
/*}*/

/*.furniture-card {*/
/*    flex: 1;*/
/*    min-width: 200px;*/
/*    padding: 20px;*/
/*    border: 2px solid var(--border-gray);*/
/*    border-radius: 16px;*/
/*    cursor: pointer;*/
/*    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);*/
/*    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);*/
/*}*/

/* Simple Checkbox (Consent) */
/*.simple-checkbox-item {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    cursor: pointer;*/
/*    margin-bottom: 8px;*/
/*    padding: 4px 0;*/
/*}*/

/*.simple-checkbox-item .option-checkbox {*/
/*    width: 24px;*/
/*    height: 24px;*/
/*    border: 2px solid var(--border-gray);*/
/*    border-radius: 6px;*/
/*    margin-right: 12px;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    transition: all 0.2s;*/
/*    background: white;*/
/*    flex-shrink: 0;*/
/*}*/

/*.simple-checkbox-item:hover .option-checkbox {*/
/*    border-color: var(--primary-orange);*/
/*}*/

/*@media (max-width: 480px) {*/
/*    .furniture-card {*/
/*        min-width: 100%;*/
/*    }*/
/*}*/

/*.furniture-card:hover {*/
/*    border-color: var(--primary-orange);*/
/*    transform: translateY(-4px);*/
/*    box-shadow: 0 8px 24px rgba(245, 166, 35, 0.15);*/
/*}*/

/*.furniture-card:active {*/
/*    transform: translateY(-2px);*/
/*}*/

/*.furniture-card.selected {*/
/*    border-color: var(--primary-orange);*/
/*    background-color: rgba(245, 166, 35, 0.08);*/
/*}*/

/*.furniture-card .card-title {*/
/*    font-size: 16px;*/
/*    font-weight: 600;*/
/*    color: var(--dark-brown);*/
/*    margin-bottom: 4px;*/
/*}*/

/*.furniture-card .card-desc {*/
/*    font-size: 12px;*/
/*    color: #666;*/
/*}*/

/* Buttons with simple fade effects */
/*.btn-primary-custom {*/
/*    background: var(--primary-orange);*/
/*    border: none;*/
/*    border-radius: 10px;*/
/*    padding: 14px 48px;*/
/*    font-size: 16px;*/
/*    font-weight: 600;*/
/*    color: white;*/
/*    transition: all 0.3s ease;*/
/*}*/

/*.btn-primary-custom:hover {*/
/*    background: #E07500;*/
/*    color: white;*/
/*    opacity: 0.9;*/
/*}*/

/*.btn-primary-custom:active {*/
/*    transform: translateY(0);*/
/*    box-shadow: 0 4px 12px rgba(61, 35, 20, 0.2);*/
/*}*/

/*.btn-secondary-custom {*/
/*    background: linear-gradient(135deg, #888, #999);*/
/*    border: none;*/
/*    border-radius: 10px;*/
/*    padding: 14px 48px;*/
/*    font-size: 16px;*/
/*    font-weight: 600;*/
/*    color: white;*/
/*    transition: all 0.3s ease;*/
/*}*/

/*.btn-secondary-custom:hover {*/
/*    background: linear-gradient(135deg, #777, #888);*/
/*    color: white;*/
/*    opacity: 0.9;*/
/*}*/

/*.btn-secondary-custom:active {*/
/*    opacity: 1;*/
/*}*/

/*.buttons-container {*/
/*    display: flex;*/
/*    justify-content: flex-end;*/
/*    gap: 12px;*/
/*    margin-top: 32px;*/
/*    flex-wrap: wrap;*/
/*}*/

/*@media (max-width: 480px) {*/
/*    .buttons-container {*/
/*        flex-direction: column;*/
/*    }*/

/*    .btn-primary-custom,*/
/*    .btn-secondary-custom {*/
/*        width: 100%;*/
/*        padding: 16px;*/
/*    }*/
/*}*/

/* Footer */
/* Footer Restructure */
/*.footer {*/
/*    background: #000000;*/
/*    color: white;*/
/*    padding: 20px 20px;*/
    /* Matched to new design padding */
/*    text-align: center;*/
/*    margin-top: auto;*/
/*}*/

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

/*.footer-content {*/
/*    display: flex;*/
/*    flex-direction: column;*/
    /* Stack links and address vertically */
/*    justify-content: center;*/
/*    align-items: center;*/
/*    gap: 30px;*/
    /* Gap between links section and address */
/*    margin-bottom: 30px;*/
/*}*/

/*.footer-links {*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    gap: 60px;*/
/*}*/

/*.footer-item {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 15px;*/
/*    color: white !important;*/
/*    text-decoration: none !important;*/
/*    transition: transform 0.3s ease;*/
/*}*/

/*.footer-item:hover {*/
/*    transform: scale(1.05);*/
    /* Restore slight scale effect */
/*}*/

/* Icons */
/*.footer-icon {*/
/*    width: 24px;*/
/*    height: 24px;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*}*/

/*.footer-icon i {*/
/*    color: var(--primary-orange);*/
    /* Brand color override */
/*    font-size: 18px;*/
/*}*/

/* Specific larger size for location icon if requested */
/*.footer-icon.location i {*/
/*    font-size: 22px;*/
/*    margin-left: 4px;*/
/*}*/

/*.footer-text {*/
/*    font-size: 16px;*/
/*    color: #fff;*/
/*    text-align: left;*/
    /* Ensure text aligns properly */
/*}*/

/* Vertical Divider */
/*.footer-divider {*/
/*    width: 2px;*/
/*    height: 30px;*/
/*    background: #333;*/
/*}*/

/*.footer-credit {*/
/*    text-align: center;*/
/*    padding-top: 30px;*/
/*    border-top: 1px solid #222;*/
/*    color: #888;*/
/*    font-size: 12px;*/
/*}*/

/*.footer-address {*/
/*    max-width: 500px;*/
/*    width: 100%;*/
/*    justify-content: center;*/
/*    align-items: flex-start;*/
/*}*/

/*.footer-address:hover {*/
/*    transform: scale(1.02);*/
/*}*/

/*.footer-address .footer-text {*/
/*    text-align: left;*/
/*}*/

/* Mobile Responsive */
/*@media (max-width: 768px) {*/
/*    .footer-content {*/
/*        align-items: center;*/
        /* Center everything on mobile too, or keep left? Standard mobile is usually centered or stacked left. Previous was left. */
/*        gap: 20px;*/
/*    }*/

/*    .footer-links {*/
/*        flex-direction: column;*/
/*        align-items: flex-start;*/
        /* Stack email and phone */
/*        width: 100%;*/
/*        gap: 20px;*/
/*    }*/

/*    .footer-divider {*/
/*        display: none;*/
/*    }*/

/*    .footer-item {*/
/*        width: 100%;*/
/*        justify-content: flex-start;*/
        /* Align item content start */
/*    }*/

/*    .footer-address {*/
        /* Ensure address also aligns left */
/*        width: 100%;*/
/*        justify-content: flex-start;*/
/*        align-items: flex-start;*/
        /* Align icon to top */
/*    }*/

/*    .footer-address .footer-text {*/
/*        text-align: left;*/
/*        line-height: 1.5;*/
        /* ≈ 21px */
/*    }*/

    /* Adjust icon position for top alignment */
/*    .footer-address .footer-icon {*/
/*        height: 21px;*/
        /* Match text line-height */
/*        width: 24px;*/
/*        margin-top: 0;*/
/*        align-items: center;*/
        /* Center icon within the line height */
/*    }*/

/*    .footer-text {*/
/*        font-size: 14px;*/
        /* Maintain readable size for mobile */
/*    }*/
/*}*/

/* Step visibility with animation */
/*.form-step {*/
/*    display: none;*/
/*    animation: fadeIn 0.5s ease-out;*/
/*}*/

/*.form-step.active {*/
/*    display: block;*/
/*}*/

/* Lainnya input with animation */
/*.lainnya-input {*/
/*    margin-top: 8px;*/
/*    display: none;*/
/*    opacity: 0;*/
/*}*/

/*.lainnya-input.show {*/
/*    display: block;*/
/*    animation: slideDown 0.3s ease-out forwards;*/
/*}*/

/* Success message */
/*.success-message {*/
/*    background: linear-gradient(135deg, #d4edda, #c3e6cb);*/
/*    border: 1px solid #28a745;*/
/*    color: #155724;*/
/*    padding: 16px 20px;*/
/*    border-radius: 12px;*/
/*    margin-bottom: 24px;*/
/*    animation: fadeIn 0.5s ease-out;*/
/*    display: flex;*/
/*    align-items: center;*/
/*}*/

/* Section spacing */
/*.form-section {*/
/*    margin-bottom: 28px;*/
/*}*/

/* Ripple effect */
/*.ripple {*/
/*    position: relative;*/
/*    overflow: hidden;*/
/*}*/

/*.ripple::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    top: 50%;*/
/*    left: 50%;*/
/*    pointer-events: none;*/
/*    background-image: radial-gradient(circle, rgba(245, 166, 35, 0.3) 10%, transparent 10.01%);*/
/*    background-repeat: no-repeat;*/
/*    background-position: 50%;*/
/*    transform: translate(-50%, -50%) scale(10);*/
/*    opacity: 0;*/
/*    transition: transform 0.5s, opacity 1s;*/
/*}*/

/*.ripple:active::after {*/
/*    transform: translate(-50%, -50%) scale(0);*/
/*    opacity: 1;*/
/*    transition: 0s;*/
/*}*/

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

/* Mobile - Small (max 480px) */
/*@media (max-width: 480px) {*/

    /* Header adjustments */
/*    .header {*/
/*        flex-direction: column;*/
/*        align-items: flex-start;*/
/*        gap: 8px;*/
/*        margin-bottom: 20px;*/
/*    }*/

/*    .header-right {*/
/*        width: 100%;*/
/*        flex-direction: row;*/
/*        justify-content: space-between;*/
/*        align-items: center;*/
/*        margin-top: 8px;*/
/*    }*/

/*    .logo-img {*/
/*        height: 32px;*/
/*    }*/

    /* Progress bar mobile */
/*    .progress-section {*/
/*        flex: 1;*/
/*        min-width: unset;*/
/*        max-width: calc(100% - 56px);*/
/*    }*/

/*    .progress-text {*/
/*        font-size: 11px;*/
/*    }*/

    /* Language selector mobile */
/*    .selected-lang {*/
/*        width: 36px;*/
/*        height: 36px;*/
/*    }*/

/*    .language-options {*/
/*        min-width: 180px;*/
/*        right: auto;*/
/*        left: 0;*/
/*    }*/

/*    .lang-option {*/
/*        padding: 10px 12px;*/
/*        gap: 10px;*/
/*    }*/

/*    .lang-option .flag-circle {*/
/*        width: 28px;*/
/*        height: 28px;*/
/*        transform: none;*/
/*    }*/

/*    .lang-name {*/
/*        font-size: 13px;*/
/*    }*/

/*    .lang-code {*/
/*        font-size: 11px;*/
/*    }*/

    /* Step title mobile */
/*    .step-title {*/
/*        font-size: 22px;*/
/*        margin-bottom: 16px;*/
/*    }*/

    /* Form labels mobile */
/*    .form-label-custom {*/
/*        font-size: 13px;*/
/*        margin-bottom: 6px;*/
/*    }*/

    /* Form inputs mobile */
/*    .form-control-custom {*/
/*        padding: 12px 14px;*/
/*        font-size: 14px;*/
/*        min-height: 50px;*/
/*        border-radius: 10px;*/
/*    }*/

    /* Option items mobile */
/*    .option-item {*/
/*        padding: 12px;*/
/*        border-radius: 10px;*/
/*        margin-bottom: 10px;*/
/*    }*/

/*    .option-item:hover {*/
/*        transform: none;*/
/*    }*/

/*    .option-radio,*/
/*    .option-checkbox {*/
/*        width: 22px;*/
/*        height: 22px;*/
/*        min-width: 22px;*/
/*        margin-right: 10px;*/
/*    }*/

/*    .option-label {*/
/*        font-size: 13px;*/
/*        line-height: 1.4;*/
/*    }*/

/*    .option-sublabel {*/
/*        font-size: 11px;*/
/*    }*/

    /* Conditional fields mobile */
/*    .conditional-fields {*/
/*        padding-left: 0;*/
        /* Remove indentation on mobile to maximize width */
/*        margin-top: 10px;*/
/*        border-left: 3px solid #e9ecef;*/
        /* Add subtle border indicator instead */
/*        padding-left: 12px;*/
        /* Small padding from border */
/*    }*/

/*    .lainnya-input-container {*/
/*        padding-left: 0;*/
/*    }*/

/*    .conditional-fields .form-label-custom,*/
/*    .lainnya-input-container .form-label-custom {*/
/*        font-size: 13px !important;*/
        /* Force same size as other labels */
/*        margin-bottom: 6px;*/
/*    }*/

/*    .conditional-fields .form-control-custom,*/
/*    .lainnya-input-container .form-control-custom {*/
/*        min-height: 50px;*/
/*        padding: 12px 14px;*/
/*        width: 100%;*/
        /* Ensure full width */
/*    }*/

/*    .conditional-fields input[type="text"].form-control-custom,*/
/*    .lainnya-input-container input[type="text"].form-control-custom {*/
/*        height: 50px;*/
/*    }*/

    /* Furniture cards mobile */
/*    .furniture-cards {*/
/*        gap: 10px;*/
/*    }*/

/*    .furniture-card {*/
/*        padding: 14px;*/
/*        border-radius: 12px;*/
/*    }*/

/*    .furniture-card .card-title {*/
/*        font-size: 14px;*/
/*    }*/

/*    .furniture-card .card-desc {*/
/*        font-size: 11px;*/
/*    }*/

/*    .furniture-card:hover {*/
/*        transform: none;*/
/*    }*/

    /* Buttons mobile */
/*    .buttons-container {*/
/*        margin-top: 24px;*/
/*        gap: 10px;*/
/*    }*/

/*    .btn-primary-custom,*/
/*    .btn-secondary-custom {*/
/*        padding: 14px 16px;*/
/*        font-size: 15px;*/
/*        border-radius: 10px;*/
/*    }*/

    /* Form section mobile */
/*    .form-section {*/
/*        margin-bottom: 20px;*/
/*    }*/

    /* Footer mobile */
/*    .footer {*/
/*        padding: 20px 16px;*/
/*    }*/

/*    .footer-contact {*/
/*        font-size: 12px;*/
/*    }*/

/*    .footer-credit {*/
/*        font-size: 11px;*/
/*    }*/

    /* Error message mobile */
/*    .error-message {*/
/*        font-size: 12px;*/
/*        margin-top: 4px;*/
/*    }*/

    /* Simple checkbox mobile */
/*    .simple-checkbox-item {*/
/*        padding: 2px 0;*/
/*    }*/

/*    .simple-checkbox-item .option-checkbox {*/
/*        width: 22px;*/
/*        height: 22px;*/
/*        margin-right: 10px;*/
/*    }*/

/*    .simple-checkbox-item .option-label {*/
/*        font-size: 12px;*/
/*    }*/
/*}*/

/* Mobile - Medium (481px - 767px) */
/*@media (min-width: 481px) and (max-width: 767px) {*/
/*    .header {*/
/*        margin-bottom: 24px;*/
/*    }*/

/*    .logo-img {*/
/*        height: 40px;*/
/*    }*/

/*    .step-title {*/
/*        font-size: 24px;*/
/*        margin-bottom: 20px;*/
/*    }*/

/*    .form-control-custom {*/
/*        padding: 14px;*/
/*        min-height: 54px;*/
/*    }*/

/*    .option-item {*/
/*        padding: 14px;*/
/*    }*/

/*    .option-label {*/
/*        font-size: 14px;*/
/*    }*/

/*    .conditional-fields {*/
/*        padding-left: 24px;*/
/*    }*/

/*    .lainnya-input-container {*/
/*        padding-left: 24px;*/
/*    }*/

/*    .furniture-card {*/
/*        padding: 16px;*/
/*    }*/

/*    .buttons-container {*/
/*        flex-direction: row;*/
/*        justify-content: flex-end;*/
/*    }*/

/*    .btn-primary-custom,*/
/*    .btn-secondary-custom {*/
/*        width: auto;*/
/*        padding: 14px 32px;*/
/*    }*/
/*}*/

/* Touch-friendly improvements */
/*@media (hover: none) and (pointer: coarse) {*/
/*    .option-item:hover {*/
/*        transform: none;*/
/*        background-color: transparent;*/
/*    }*/

/*    .option-item.selected:hover {*/
/*        background-color: rgba(245, 166, 35, 0.08);*/
/*    }*/

/*    .furniture-card:hover {*/
/*        transform: none;*/
/*    }*/

/*    .furniture-card.selected:hover {*/
/*        background-color: rgba(245, 166, 35, 0.08);*/
/*    }*/

/*    .selected-lang:hover {*/
/*        border-color: var(--border-gray);*/
/*        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);*/
/*    }*/

/*    .btn-primary-custom:hover,*/
/*    .btn-secondary-custom:hover {*/
/*        opacity: 1;*/
/*    }*/
/*}*/

/*.bg-orange {*/
/*    background-color: var(--primary-orange);*/
/*}*/

/* ============================================
   SUCCESS MODAL STYLES
   ============================================ */
/*.success-modal-overlay {*/
/*    position: fixed;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background: rgba(0, 0, 0, 0.5);*/
/*    backdrop-filter: blur(4px);*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    z-index: 99999;*/
/*    animation: fadeInOverlay 0.3s ease-out;*/
/*}*/

/*.success-modal-overlay.fade-out {*/
/*    animation: fadeOutOverlay 0.3s ease-out forwards;*/
/*}*/

/*@keyframes fadeInOverlay {*/
/*    from {*/
/*        opacity: 0;*/
/*    }*/

/*    to {*/
/*        opacity: 1;*/
/*    }*/
/*}*/

/*@keyframes fadeOutOverlay {*/
/*    from {*/
/*        opacity: 1;*/
/*    }*/

/*    to {*/
/*        opacity: 0;*/
/*    }*/
/*}*/

/*.success-modal {*/
/*    background: white;*/
/*    border-radius: 24px;*/
/*    padding: 40px;*/
/*    max-width: 400px;*/
/*    width: 90%;*/
/*    text-align: center;*/
/*    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);*/
/*    animation: popInModal 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);*/
/*    position: relative;*/
/*    overflow: hidden;*/
/*}*/

/*.success-modal-overlay.fade-out .success-modal {*/
/*    animation: popOutModal 0.3s ease-in forwards;*/
/*}*/

/*@keyframes popInModal {*/
/*    from {*/
/*        opacity: 0;*/
/*        transform: scale(0.8) translateY(20px);*/
/*    }*/

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

/*@keyframes popOutModal {*/
/*    from {*/
/*        opacity: 1;*/
/*        transform: scale(1);*/
/*    }*/

/*    to {*/
/*        opacity: 0;*/
/*        transform: scale(0.9);*/
/*    }*/
/*}*/

/*.success-modal-icon {*/
/*    width: 80px;*/
/*    height: 80px;*/
/*    margin: 0 auto 20px;*/
/*    background: linear-gradient(135deg, #4CAF50, #8BC34A);*/
/*    border-radius: 50%;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    animation: bounceIn 0.6s 0.2s backwards cubic-bezier(0.34, 1.56, 0.64, 1);*/
/*}*/

/*@keyframes bounceIn {*/
/*    from {*/
/*        opacity: 0;*/
/*        transform: scale(0);*/
/*    }*/

/*    50% {*/
/*        transform: scale(1.2);*/
/*    }*/

/*    to {*/
/*        opacity: 1;*/
/*        transform: scale(1);*/
/*    }*/
/*}*/

/*.success-modal-icon i {*/
/*    font-size: 40px;*/
/*    color: white;*/
/*}*/

/*.success-modal-title {*/
/*    font-size: 24px;*/
/*    font-weight: 700;*/
/*    color: #333;*/
/*    margin: 0 0 12px;*/
/*}*/

/*.success-modal-message {*/
/*    font-size: 15px;*/
/*    color: #666;*/
/*    margin: 0 0 24px;*/
/*    line-height: 1.5;*/
/*}*/

/*.success-modal-timer {*/
/*    height: 4px;*/
/*    background: #e0e0e0;*/
/*    border-radius: 2px;*/
/*    overflow: hidden;*/
/*    margin-top: 8px;*/
/*}*/

/*.timer-bar {*/
/*    height: 100%;*/
/*    width: 100%;*/
/*    background: linear-gradient(90deg, #4CAF50, #8BC34A);*/
/*    border-radius: 2px;*/
/*    transition: width 3s linear;*/
/*}*/

/* Mobile adjustments for modal */
/*@media (max-width: 480px) {*/
/*    .success-modal {*/
/*        padding: 30px 24px;*/
/*        border-radius: 20px;*/
/*    }*/

/*    .success-modal-icon {*/
/*        width: 64px;*/
/*        height: 64px;*/
/*    }*/

/*    .success-modal-icon i {*/
/*        font-size: 32px;*/
/*    }*/

/*    .success-modal-title {*/
/*        font-size: 20px;*/
/*    }*/

/*    .success-modal-message {*/
/*        font-size: 14px;*/
/*    }*/
/*}*/

/* Responsive Footer Alignment (< 768px) */
/*@media (max-width: 767px) {*/
/*    .footer {*/
/*        text-align: left;*/
/*        padding-left: 20px;*/
/*        padding-right: 20px;*/
/*    }*/

/*    .footer-contact {*/
/*        align-items: flex-start;*/
/*    }*/

/*    .footer-links {*/
/*        justify-content: flex-start;*/
/*    }*/

/*    .footer-address {*/
/*        margin-left: 0;*/
/*        margin-right: 0;*/
/*        text-align: left;*/
/*        max-width: 100%;*/
/*    }*/
/*}*/

:root {
    --primary-orange: #FF8300;
    --dark-brown: #3D2314;
    --light-gray: #F5F5F5;
    --border-gray: #E3E3E3;
}

* {
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

body {
    background-color: #F8F9FA;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Main container - FULLY RESPONSIVE */
.main-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: clamp(16px, 3vw, 40px) clamp(16px, 4vw, 60px);
    flex: 1;
    background-color: #FFFFFF;
    border-radius: clamp(0px, 2vw, 16px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Desktop (larger screens) */
@media (min-width: 992px) {
    .main-container {
        max-width: 800px;
        margin-top: 24px;
        margin-bottom: 24px;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 991px) {
    .main-container {
        max-width: 700px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .main-container {
        border-radius: 0;
        box-shadow: none;
    }
}

/* Header - FIXED RESPONSIVE */
.header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: clamp(20px, 4vw, 30px);
    position: relative;
    flex-wrap: nowrap;
    gap: 12px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease;
}

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

.logo-img {
    height: clamp(40px, 8vw, 60px);
    width: auto;
    transition: transform 0.3s ease;
}

/* Header Right - wrapper untuk progress dan bendera */
.header-right {
    position: absolute;
    right: 0;
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Mobile Header Fix */
@media (max-width: 768px) {
    .header {
        justify-content: space-between;
        padding: 0 10px;
    }

    .header-right {
        position: relative;
        right: auto;
    }

    .logo-img {
        height: clamp(36px, 10vw, 42px);
    }
}

/* Progress Bar */
.progress-section {
    max-width: 400px;
    min-width: 300px;
}

@media (max-width: 768px) {
    .progress-section {
        display: none;
    }
}

.progress-bar-custom {
    height: 8px;
    background-color: var(--border-gray);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-orange), #FFB84D);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-text {
    font-size: 12px;
    color: #666;
    text-align: left;
    margin-top: 4px;
}

/* Language Selector Dropdown - RESPONSIVE */
.language-selector {
    position: relative;
    z-index: 9999;
}

.language-dropdown {
    position: relative;
    cursor: pointer;
    user-select: none;
}

.selected-lang {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    border: 2px solid var(--border-gray);
    border-radius: 50%;
    padding: 0;
    width: clamp(36px, 8vw, 40px);
    height: clamp(36px, 8vw, 40px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.selected-lang:hover {
    border-color: var(--primary-orange);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.flag-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}

.chevron {
    display: none;
}

.language-options {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 9999;
    overflow: hidden;
}

@media (max-width: 768px) {
    .language-options {
        right: 0;
        left: auto;
        min-width: 150px;
    }
}

.language-dropdown.active .language-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    position: relative;
}

.lang-option:hover {
    background-color: rgba(255, 131, 0, 0.05);
}

.lang-option.selected {
    background-color: rgba(255, 131, 0, 0.1);
}

.lang-option .flag-circle {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    transform: none;
    border: 2px solid var(--border-gray);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.lang-text {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.lang-name {
    font-size: clamp(13px, 2.5vw, 14px);
    font-weight: 600;
    color: var(--dark-brown);
    line-height: 1.2;
}

.lang-code {
    font-size: clamp(11px, 2vw, 12px);
    color: #666;
    line-height: 1.2;
}

.checkmark {
    font-size: 16px;
    color: var(--primary-orange);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.lang-option.selected .checkmark {
    opacity: 1;
}

/* Step Title with animation */
.step-title {
    font-size: clamp(22px, 5vw, 28px);
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: clamp(16px, 3vw, 24px);
    animation: fadeInDown 0.5s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* Form Labels */
.form-label-custom {
    font-size: clamp(13px, 2.5vw, 14px);
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 8px;
    display: block;
}

.form-label-custom .required {
    color: var(--primary-orange);
}

/* Form Inputs - FULLY RESPONSIVE */
.form-control-custom {
    width: 100%;
    border: 2px solid var(--border-gray);
    border-radius: clamp(10px, 2vw, 12px);
    padding: clamp(12px, 2.5vw, 16px);
    font-size: clamp(14px, 2.5vw, 14px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    min-height: clamp(50px, 10vw, 58px);
}

.form-control-custom:hover {
    border-color: var(--primary-orange);
}

.form-control-custom:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    outline: none !important;
}

.form-control-custom.error {
    border-color: #dc3545 !important;
    background-color: #fff5f5;
}

.form-control-custom.error:focus {
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

/* Error message styling */
.error-message {
    display: none;
    color: #dc3545;
    font-size: clamp(12px, 2vw, 13px);
    margin-top: 6px;
    font-weight: 500;
    animation: slideDown 0.3s ease-out;
}

.error-message.show {
    display: block;
}

.error-message i {
    margin-right: 4px;
}

/* ============================================
   RESPONSIVE GRID SYSTEM FOR DYNAMIC COLUMNS
   ============================================ */

/* Base grid styling - applies to all grids */
[style*="display: grid"] {
    gap: clamp(8px, 2vw, 12px);
}

/* 1 Column Grid - Always full width on mobile */
[style*="grid-template-columns: repeat(1, 1fr)"] {
    grid-template-columns: 1fr !important;
}

/* 2 Column Grid - Responsive breakpoints */
[style*="grid-template-columns: repeat(2, 1fr)"] {
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 640px) {
    [style*="grid-template-columns: repeat(2, 1fr)"] {
        grid-template-columns: 1fr !important;
    }
}

/* 3 Column Grid - Responsive breakpoints */
[style*="grid-template-columns: repeat(3, 1fr)"] {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {
    [style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 480px) {
    [style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
    }
}

/* 4 Column Grid - Responsive breakpoints */
[style*="grid-template-columns: repeat(4, 1fr)"] {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 992px) {
    [style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 640px) {
    [style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 480px) {
    [style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: 1fr !important;
    }
}

/* 5+ Column Grid - Responsive breakpoints */
[style*="grid-template-columns: repeat(5, 1fr)"],
[style*="grid-template-columns: repeat(6, 1fr)"] {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

@media (max-width: 768px) {
    [style*="grid-template-columns: repeat(5, 1fr)"],
    [style*="grid-template-columns: repeat(6, 1fr)"] {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)) !important;
    }
}

@media (max-width: 480px) {
    [style*="grid-template-columns: repeat(5, 1fr)"],
    [style*="grid-template-columns: repeat(6, 1fr)"] {
        grid-template-columns: 1fr !important;
    }
}

/* ============================================
   OPTION ITEMS (Radio/Checkbox) - RESPONSIVE
   ============================================ */

.option-item {
    display: flex;
    align-items: flex-start;
    padding: clamp(12px, 2.5vw, 16px);
    border: 2px solid var(--border-gray);
    border-radius: clamp(10px, 2vw, 12px);
    margin-bottom: 0;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeIn 0.4s ease-out;
    animation-fill-mode: both;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    min-height: clamp(50px, 10vw, 58px);
}

/* Only add margin for stacked items (direct children of form-section) */
.form-section > .option-item {
    margin-bottom: 12px;
}

.option-item:nth-child(1) {
    animation-delay: 0.05s;
}

.option-item:nth-child(2) {
    animation-delay: 0.1s;
}

.option-item:nth-child(3) {
    animation-delay: 0.15s;
}

.option-item:nth-child(4) {
    animation-delay: 0.2s;
}

.option-item:nth-child(5) {
    animation-delay: 0.25s;
}

.option-item:nth-child(6) {
    animation-delay: 0.3s;
}

.option-item:hover {
    border-color: var(--primary-orange);
    background-color: rgba(245, 166, 35, 0.03);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

@media (min-width: 769px) {
    .option-item:hover {
        transform: translateX(4px);
    }
}

.option-item:active {
    transform: translateX(2px) scale(0.99);
}

.option-item.selected {
    border-color: var(--primary-orange);
    background-color: rgba(245, 166, 35, 0.08);
}

.option-radio,
.option-checkbox {
    width: clamp(20px, 4vw, 24px);
    height: clamp(20px, 4vw, 24px);
    min-width: clamp(20px, 4vw, 24px);
    border: 2px solid var(--border-gray);
    border-radius: 50%;
    margin-right: clamp(10px, 2vw, 12px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.option-checkbox {
    border-radius: clamp(4px, 1vw, 6px);
}

.option-item:hover .option-radio,
.option-item:hover .option-checkbox {
    border-color: var(--primary-orange);
}

.option-item.selected .option-radio,
.option-item.selected .option-checkbox {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
    transform: scale(1.1);
}

.option-item.selected .option-radio::after {
    content: '';
    width: clamp(6px, 1.5vw, 8px);
    height: clamp(6px, 1.5vw, 8px);
    background: white;
    border-radius: 50%;
    animation: popIn 0.3s ease-out;
}

@keyframes popIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.option-label {
    font-size: clamp(13px, 2.5vw, 14px);
    color: var(--dark-brown);
    line-height: 1.5;
    word-break: break-word;
}

.option-sublabel {
    font-size: clamp(11px, 2vw, 12px);
    color: #666;
    margin-top: 4px;
    display: block;
}

/* ============================================
   FURNITURE CARDS (Checkbox Cards) - RESPONSIVE
   ============================================ */

.furniture-cards {
    display: grid;
    gap: clamp(10px, 2vw, 16px);
    margin-bottom: clamp(20px, 3vw, 24px);
}

.furniture-card {
    padding: clamp(14px, 3vw, 20px);
    border: 2px solid var(--border-gray);
    border-radius: clamp(12px, 2.5vw, 16px);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    min-height: clamp(70px, 15vw, 100px);
}

.furniture-card:hover {
    border-color: var(--primary-orange);
    box-shadow: 0 8px 24px rgba(245, 166, 35, 0.15);
}

@media (min-width: 769px) {
    .furniture-card:hover {
        transform: translateY(-4px);
    }
}

.furniture-card:active {
    transform: translateY(-2px);
}

.furniture-card.selected {
    border-color: var(--primary-orange);
    background-color: rgba(245, 166, 35, 0.08);
}

.furniture-card .card-title {
    font-size: clamp(14px, 2.5vw, 16px);
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 4px;
}

.furniture-card .card-desc {
    font-size: clamp(11px, 2vw, 12px);
    color: #666;
    line-height: 1.4;
}

/* ============================================
   CONDITIONAL FIELDS - RESPONSIVE
   ============================================ */

.conditional-fields {
    display: none;
    padding-left: clamp(0px, 3vw, 36px);
    margin-top: 12px;
    opacity: 0;
    transform: translateY(-10px);
}

@media (max-width: 640px) {
    .conditional-fields {
        padding-left: 12px;
        border-left: 3px solid #e9ecef;
    }
}

.conditional-fields.show {
    display: block;
    animation: slideDown 0.3s ease-out forwards;
}

.lainnya-input-container {
    display: none;
    padding-left: clamp(0px, 3vw, 36px);
    margin-top: 8px;
    margin-bottom: 12px;
    opacity: 0;
    transform: translateY(-10px);
}

@media (max-width: 640px) {
    .lainnya-input-container {
        padding-left: 12px;
        border-left: 3px solid #e9ecef;
    }
}

.lainnya-input-container.show {
    display: block;
    animation: slideDown 0.3s ease-out forwards;
}

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

/* ============================================
   SIMPLE CHECKBOX (Consent) - RESPONSIVE
   ============================================ */

.simple-checkbox-item {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    margin-bottom: 8px;
    padding: 4px 0;
}

.simple-checkbox-item .option-checkbox {
    width: clamp(20px, 4vw, 24px);
    height: clamp(20px, 4vw, 24px);
    min-width: clamp(20px, 4vw, 24px);
    border: 2px solid var(--border-gray);
    border-radius: clamp(4px, 1vw, 6px);
    margin-right: clamp(10px, 2vw, 12px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    background: white;
    flex-shrink: 0;
}

.simple-checkbox-item:hover .option-checkbox {
    border-color: var(--primary-orange);
}

.simple-checkbox-item .option-label {
    font-size: clamp(12px, 2.5vw, 13px);
    line-height: 1.5;
}

/* ============================================
   BUTTONS - RESPONSIVE
   ============================================ */

.btn-primary-custom {
    background: var(--primary-orange);
    border: none;
    border-radius: clamp(8px, 2vw, 10px);
    padding: clamp(12px, 2.5vw, 14px) clamp(32px, 6vw, 48px);
    font-size: clamp(14px, 2.5vw, 16px);
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    width: auto;
    min-width: clamp(120px, 25vw, 150px);
}

.btn-primary-custom:hover {
    background: #E07500;
    color: white;
    opacity: 0.9;
}

.btn-primary-custom:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(61, 35, 20, 0.2);
}

.btn-secondary-custom {
    background: linear-gradient(135deg, #888, #999);
    border: none;
    border-radius: clamp(8px, 2vw, 10px);
    padding: clamp(12px, 2.5vw, 14px) clamp(32px, 6vw, 48px);
    font-size: clamp(14px, 2.5vw, 16px);
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    width: auto;
    min-width: clamp(120px, 25vw, 150px);
}

.btn-secondary-custom:hover {
    background: linear-gradient(135deg, #777, #888);
    color: white;
    opacity: 0.9;
}

.btn-secondary-custom:active {
    opacity: 1;
}

.buttons-container {
    display: flex;
    justify-content: flex-end;
    gap: clamp(10px, 2vw, 12px);
    margin-top: clamp(24px, 4vw, 32px);
    flex-wrap: wrap;
}

@media (max-width: 480px) {
    .buttons-container {
        flex-direction: column;
    }

    .btn-primary-custom,
    .btn-secondary-custom {
        width: 100%;
    }
}

/* ============================================
   FOOTER - RESPONSIVE
   ============================================ */

.footer {
    background: #000000;
    color: white;
    padding: clamp(16px, 3vw, 20px);
    text-align: center;
    margin-top: auto;
}

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

.footer-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: clamp(20px, 4vw, 30px);
    margin-bottom: clamp(20px, 4vw, 30px);
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(20px, 8vw, 60px);
    flex-wrap: wrap;
}

.footer-item {
    display: flex;
    align-items: center;
    gap: clamp(10px, 2vw, 15px);
    color: white !important;
    text-decoration: none !important;
    transition: transform 0.3s ease;
}

.footer-item:hover {
    transform: scale(1.05);
}

.footer-icon {
    width: clamp(20px, 4vw, 24px);
    height: clamp(20px, 4vw, 24px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-icon i {
    color: var(--primary-orange);
    font-size: clamp(16px, 3vw, 18px);
}

.footer-icon.location i {
    font-size: clamp(18px, 3.5vw, 22px);
}

.footer-text {
    font-size: clamp(13px, 2.5vw, 16px);
    color: #fff;
    text-align: left;
}

.footer-divider {
    width: 2px;
    height: clamp(24px, 5vw, 30px);
    background: #333;
}

@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .footer-divider {
        display: none;
    }

    .footer-item {
        width: 100%;
        justify-content: flex-start;
    }

    .footer-text {
        text-align: left;
        line-height: 1.5;
    }
}

.footer-credit {
    text-align: center;
    padding-top: clamp(20px, 4vw, 30px);
    border-top: 1px solid #222;
    color: #888;
    font-size: clamp(11px, 2vw, 12px);
}

.footer-address {
    max-width: 500px;
    width: 100%;
    justify-content: center;
    align-items: flex-start;
}

.footer-address:hover {
    transform: scale(1.02);
}

.footer-address .footer-text {
    text-align: left;
}

/* Section spacing */
.form-section {
    margin-bottom: clamp(20px, 3vw, 28px);
}

/* Step visibility with animation */
.form-step {
    display: none;
    animation: fadeIn 0.5s ease-out;
}

.form-step.active {
    display: block;
}

/* Success Modal - RESPONSIVE */
.success-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    animation: fadeInOverlay 0.3s ease-out;
    padding: 20px;
}

.success-modal-overlay.fade-out {
    animation: fadeOutOverlay 0.3s ease-out forwards;
}

@keyframes fadeInOverlay {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeOutOverlay {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.success-modal {
    background: white;
    border-radius: clamp(16px, 4vw, 24px);
    padding: clamp(24px, 5vw, 40px);
    max-width: 400px;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    animation: popInModal 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.success-modal-overlay.fade-out .success-modal {
    animation: popOutModal 0.3s ease-in forwards;
}

@keyframes popInModal {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }

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

@keyframes popOutModal {
    from {
        opacity: 1;
        transform: scale(1);
    }

    to {
        opacity: 0;
        transform: scale(0.9);
    }
}

.success-modal-icon {
    width: clamp(64px, 15vw, 80px);
    height: clamp(64px, 15vw, 80px);
    margin: 0 auto clamp(16px, 3vw, 20px);
    background: linear-gradient(135deg, #4CAF50, #8BC34A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounceIn 0.6s 0.2s backwards cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes bounceIn {
    from {
        opacity: 0;
        transform: scale(0);
    }

    50% {
        transform: scale(1.2);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.success-modal-icon i {
    font-size: clamp(32px, 7vw, 40px);
    color: white;
}

.success-modal-title {
    font-size: clamp(20px, 4vw, 24px);
    font-weight: 700;
    color: #333;
    margin: 0 0 clamp(10px, 2vw, 12px);
}

.success-modal-message {
    font-size: clamp(14px, 2.5vw, 15px);
    color: #666;
    margin: 0 0 clamp(20px, 3vw, 24px);
    line-height: 1.5;
}

.success-modal-timer {
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    overflow: hidden;
    margin-top: 8px;
}

.timer-bar {
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, #4CAF50, #8BC34A);
    border-radius: 2px;
    transition: width 3s linear;
}

/* Dropdown/Select - RESPONSIVE */
.form-control-custom[multiple],
select.form-control-custom {
    padding: clamp(10px, 2vw, 14px);
}

/* Textarea auto-resize */
.auto-resize {
    resize: vertical;
    min-height: clamp(80px, 15vw, 100px);
}

/* Ripple effect */
.ripple {
    position: relative;
    overflow: hidden;
}

.ripple::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    pointer-events: none;
    background-image: radial-gradient(circle, rgba(245, 166, 35, 0.3) 10%, transparent 10.01%);
    background-repeat: no-repeat;
    background-position: 50%;
    transform: translate(-50%, -50%) scale(10);
    opacity: 0;
    transition: transform 0.5s, opacity 1s;
}

.ripple:active::after {
    transform: translate(-50%, -50%) scale(0);
    opacity: 1;
    transition: 0s;
}

/* Touch-friendly improvements for mobile */
@media (hover: none) and (pointer: coarse) {
    .option-item:hover {
        transform: none;
        background-color: transparent;
    }

    .option-item.selected:hover {
        background-color: rgba(245, 166, 35, 0.08);
    }

    .furniture-card:hover {
        transform: none;
    }

    .furniture-card.selected:hover {
        background-color: rgba(245, 166, 35, 0.08);
    }

    .selected-lang:hover {
        border-color: var(--border-gray);
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }

    .btn-primary-custom:hover,
    .btn-secondary-custom:hover {
        opacity: 1;
    }
}

/* Accessibility - Reduce motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print styles */
@media print {
    .header-right,
    .buttons-container,
    .footer {
        display: none;
    }

    .main-container {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

.bg-orange {
    background-color: var(--primary-orange);
}