* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-image: radial-gradient(circle at 2px 2px, rgba(195, 165, 101, 0.12) 1px, transparent 0px);
    background-size: 60px 60px;
}

.bg-gold {
    background-color: #c3a565;
}

.text-gold {
    color: #c3a565;
}

.border-gold {
    border-color: #c3a565;
}

.ring-gold\/20 {
    box-shadow: 0 0 0 4px rgba(195, 165, 101, 0.2);
}

.hover-gold:hover {
    background-color: #d4b676;
}

.input-base {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    color: white;
    outline: none;
    width: 100%;
    padding: 1rem;
    transition: all 0.2s;
}

.input-base:focus {
    border-color: #c3a565;
}

.input-base::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.input-error {
    border-color: rgba(239, 68, 68, 0.5) !important;
}

.input-valid {
    border-color: #10b981 !important;
}

.bg-dark-card {
    background: #0A0A0A;
}

.step-circle {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    transition: all 0.2s;
}

.step-active {
    background: #c3a565;
    color: white;
    box-shadow: 0 0 0 4px rgba(195, 165, 101, 0.2);
}

.step-completed {
    background: #10b981;
    color: white;
}

.step-pending {
    background: rgba(250, 249, 247, 0.05);
    color: rgba(250, 249, 247, 0.4);
}

.label-style {
    font-size: 0.6875rem;
    font-weight: 900;
    color: #c3a565;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 0.5rem;
}

@keyframes shrink {
    from {
        width: 100%;
    }

    to {
        width: 0%;
    }
}

.animate-progress {
    animation: shrink 8s linear forwards;
}

.remove-btn {
    color: #ff4040;
    cursor: pointer;
    margin-left: 0.25rem;
    padding: 0.125rem 0.25rem;
    border-radius: 0.25rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.remove-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.file-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    margin-bottom: 0.75rem;
    transition: all 0.2s;
}

.file-row-error {
    border-color: rgba(239, 68, 68, 0.5) !important;
}

.file-row-valid {
    border-color: #10b981 !important;
}

.file-label-btn {
    padding: 0.75rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
}

.file-label-btn:hover {
    background: #c3a565;
}

.file-label-btn:hover svg {
    color: white;
}

.file-label-btn svg {
    width: 1.25rem;
    height: 1.25rem;
    color: rgba(255, 255, 255, 0.4);
}

.file-label-btn.bg-green {
    background: #10b981;
}

.file-label-btn.bg-green svg {
    color: white;
}

.field-err {
    color: #ef4444;
    font-size: 0.75rem;
    margin-top: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.navbar {
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
    padding: 1rem 2rem;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9;
    /* border-bottom: 1px solid rgba(195, 165, 101, 0.2); */
}

.navbar.scrolled {
    background: rgba(0, 129, 88, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand {
    color: #c3a565;
    font-weight: 300;
    font-size: 1.75rem !important;
    letter-spacing: 1px;
    transition: color 0.4s ease;
    text-decoration: none;
    position: relative;
    /* padding-bottom: 4px; */
    height: auto;
    width: 160px;
    object-fit: contain;
}

.navbar.scrolled .navbar-brand {
    color: #ffffff;
}

.navbar.scrolled .navbar-brand::after {
    background: #ffffff;
    width: 60px;
}

.navbar-brand:hover {
    color: #d4b676 !important;
}

.navbar-brand:hover::after {
    width: 100%;
}

.navbar.scrolled .navbar-brand:hover {
    color: rgba(255, 255, 255, 0.9) !important;
}

.banner {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: #0A0A0A;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    padding-top: 80px;
}

.banner-overlay {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    z-index: 2;
}

.banner-overlay h1 {
    font-size: 74px;
    font-weight: 200;
    letter-spacing: 2px;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #c3a565 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.banner-overlay p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.2s both;
    line-height: 1.6;
    padding: 0 1rem;
}

/* .banner-decoration {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, transparent, #c3a565, #008158, #c3a565, transparent);
      z-index: 3;
    } */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



@media (max-width: 768px) {
    .navbar {
        padding: 0.75rem 1rem;
    }

    .form-btns {
        gap: 15px !important;
    }

    .navbar-brand {
        font-size: 1.4rem !important;
    }


    .banner-overlay h1 {
        font-size: 42px;
        letter-spacing: 1px;
        line-height: 1.2;
        padding: 0 1rem;
    }

    .banner-overlay p {
        font-size: 0.95rem;
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .banner-overlay h1 {
        font-size: 42px;
    }

    .banner-overlay p {
        font-size: 0.875rem;
    }
}

.feedback-container {
    width: 100%;
    max-width: 500px;
    margin: 60px auto;
    /* background: white; */
    padding: 40px;
    border-radius: 10px;
}

html {
    scroll-behavior: smooth;
}

.border {
    border: 1px solid !important;
}

.footer-bottom {
    background-color: #faf9f7 !important;
}

.input-base {
    width: 100%;
    padding: 1rem;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    color: white;
    outline: none;
    transition: all 0.3s ease;
}

.input-base:focus {
    border-color: #c3a565;
}

.input-base.input-valid {
    border-color: #22c55e;
    background-color: rgba(34, 197, 94, 0.05);
}

.input-base.input-error {
    border-color: #ff4040;
    background-color: rgba(255, 68, 68, 0.05);
}

.label-style {
    font-size: 11px;
    font-weight: 900;
    color: #c3a565;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 0.5rem;
}

.field-err {
    color: #ff4040;
    font-size: 10px;
    margin-top: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.file-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.file-row.file-row-valid {
    border-color: #22c55e;
    background-color: rgba(34, 197, 94, 0.05);
}

.file-row.file-row-error {
    border-color: #ff4040;
}

.file-label-btn {
    padding: 0.75rem;
    border-radius: 0.75rem;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.file-label-btn:hover {
    background: #c3a565;
}

.file-label-btn:hover svg {
    color: white;
}

.remove-btn {
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    background: rgba(255, 68, 68, 0.2);
    color: #ff4040;
    border: 1px solid #ff4040;
    font-size: 10px;
    margin-left: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.remove-btn:hover {
    background: #ff4040;
    color: white;
}

.step-circle {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.step-active {
    background: #c3a565;
    color: white;
    box-shadow: 0 0 0 4px rgba(195, 165, 101, 0.2);
}

.step-completed {
    background: #22c55e;
    color: white;
}

.step-pending {
    color: rgba(250, 249, 247, 0.4);
    background: rgba(250, 249, 247, 0.05);
}

@keyframes shrink {
    from {
        width: 100%;
    }

    to {
        width: 0%;
    }
}

.animate-progress {
    animation: shrink 8s linear forwards;
}

select.input-base option {
    background-color: #1a1a1a !important;
    color: white !important;
    padding: 12px !important;
}

select.input-base:focus option:hover,
select.input-base option:hover,
select.input-base option:checked,
select.input-base option:focus,
select.input-base option:active {
    background: #c3a565 !important;
    color: white !important;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
    opacity: 0.8;
    padding: 4px;
}

input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

input[type="date"] {
    color-scheme: dark;
    position: relative;
}

input[type="date"]:invalid::-webkit-datetime-edit {
    color: rgba(255, 255, 255, 0.4) !important;
    font-size: 14px !important;
}

input[type="date"]::-webkit-datetime-edit {
    color: white;
    font-size: 14px;
}

input[type="date"]::-webkit-datetime-edit-fields-wrapper {
    color: white;
}

input[type="date"]::-webkit-datetime-edit-text {
    color: rgba(255, 255, 255, 0.6);
    padding: 0 2px;
}

input[type="date"]::-webkit-datetime-edit-month-field,
input[type="date"]::-webkit-datetime-edit-day-field,
input[type="date"]::-webkit-datetime-edit-year-field {
    color: white;
    padding: 0 2px;
}

input[type="date"]::-webkit-datetime-edit-month-field:focus,
input[type="date"]::-webkit-datetime-edit-day-field:focus,
input[type="date"]::-webkit-datetime-edit-year-field:focus {
    background-color: #c3a565;
    color: white;
    outline: none;
    border-radius: 2px;
}

.input-base::placeholder,
textarea.input-base::placeholder,
select.input-base::placeholder,
input[type="text"].input-base::placeholder,
input[type="email"].input-base::placeholder,
input[type="tel"].input-base::placeholder,
input[type="number"].input-base::placeholder,
input[type="url"].input-base::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
    font-size: 14px !important;
    opacity: 1 !important;
}

textarea.input-base::placeholder {
    font-size: 14px !important;
    line-height: 1.5;
}

select.input-base option[value=""] {
    color: rgba(255, 255, 255, 0.4);
}

select.input-base:invalid {
    color: rgba(255, 255, 255, 0.4);
}

select.input-base option {
    color: white;
    background-color: #1a1a1a;
}

select.input-base {
    color: rgba(255, 255, 255, 0.4);
}

select.input-base.has-value {
    color: white;
}

@-moz-document url-prefix() {
    select.input-base option {
        background-color: #1a1a1a;
        color: white;
    }

    input[type="date"] {
        color-scheme: dark;
        color: white;
        background-color: #1a1a1a;
    }
}

select.input-base::-ms-expand {
    display: none;
}

select.input-base {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23c3a565' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px;
    padding-right: 2.5rem;
}

::-webkit-datetime-edit {
    padding: 0;
}

::-webkit-inner-spin-button {
    display: none;
}

::-webkit-clear-button {
    display: none;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(74%) sepia(34%) saturate(600%) hue-rotate(5deg) brightness(88%) contrast(87%);
    opacity: 1;
    cursor: pointer;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%23c3a565" stroke-width="2"><rect x="3" y="4" width="18" height="18" rx="2" ry="2"></rect><line x1="16" y1="2" x2="16" y2="6"></line><line x1="8" y1="2" x2="8" y2="6"></line><line x1="3" y1="10" x2="21" y2="10"></line></svg>');
    background-position: center;
    background-size: 20px 20px;
    background-repeat: no-repeat;
    filter: none;
}


input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 0.8;
    transform: scale(1.1);
}

input[type="checkbox"] {
    accent-color: #c3a565;
}


/* scroll down */

.mouse-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 2.5rem;
    text-decoration: none;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.mouse-icon {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(122, 122, 124, 0.918);
    border-radius: 25px;
    position: relative;
    transition: border-color 0.3s ease;
}

.mouse-icon::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
    transition: background 0.3s ease;
}

.mouse-icon::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 1px;
}

.scroll-arrow {
    margin-top: 8px;
    font-size: 16px;
    color: rgba(122, 122, 124, 0.918);
    transition: transform 0.3s ease;
}

.mouse-scroll:hover .mouse-icon {
    border-color: #c3a565;
}

.mouse-scroll:hover .mouse-icon::before {
    background: #c3a565;
}

.mouse-scroll:hover .scroll-arrow {
    color: #c3a565;
    transform: translateY(3px);
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    50% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }

    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

html {
    scroll-behavior: smooth;
}

#misa-portal {
    scroll-margin-top: 100px;
}


::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #c3a565;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #c3a565;
}

.remove-file-btn {
    position: relative;
    /* z-index: 100; */
    pointer-events: auto !important;
    cursor: pointer;
}

.file-item {
    position: relative;
    /* z-index: 90; */
}

.file-item:hover {
    background: rgba(255, 255, 255, 0.15);
}

.file-item {
    cursor: default;
}

.file-item .remove-file-btn {
    cursor: pointer;
}


.file-row {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.file-row:hover {
    border-color: #c3a565;
    background-color: rgba(195, 165, 101, 0.05);
}

.file-label-btn {
    cursor: pointer;
    /* z-index: 10; */
    position: relative;
}

.remove-file-btn {
    padding: 0.2rem 0.5rem;
    border-radius: 0.25rem;
    background: rgba(255, 68, 68, 0.2);
    color: #ff4040;
    border: 1px solid #ff4040;
    font-size: 11px;
    margin-left: 0.75rem;
    cursor: pointer !important;
    transition: all 0.3s ease;
    /* z-index: 9999; */
    position: relative;
    pointer-events: auto !important;
}

.remove-file-btn:hover {
    background: #ff4040;
    color: white;
}

.file-list-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
    width: 100%;
}

.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    cursor: default;
    position: relative;
    /* z-index: 90; */
}

.file-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.file-name {
    color: #c3a565;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 500;
}

.single-file-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 12px;
    margin-top: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: default;
    position: relative;
    /* z-index: 90; */
}

.single-file-name {
    color: #c3a565;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 500;
}

.mouse-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 2.5rem;
    text-decoration: none;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.mouse-icon {
    width: 30px;
    height: 50px;
    border: 2px solid #fff;
    border-radius: 25px;
    position: relative;
    transition: border-color 0.3s ease;
}

.mouse-icon::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
    transition: background 0.3s ease;
}

.scroll-arrow {
    margin-top: 8px;
    font-size: 12px;
    color: #fff;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.mouse-scroll:hover .mouse-icon {
    border-color: #c3a565;
}

.mouse-scroll:hover .mouse-icon::before {
    background: #c3a565;
}

.mouse-scroll:hover .scroll-arrow {
    color: #c3a565;
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    50% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }

    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

html {
    scroll-behavior: smooth;
}

#misa-portal {
    scroll-margin-top: 100px;
}


.file-row {
    /* flex-wrap: wrap !important; */
    gap: 10px !important;
}

@media (min-width:320px) and (max-width:768px) {
    .file-row {
        flex-wrap: wrap !important;
        gap: 10px !important;
    }
}

@media (min-width:1024px) and (max-width:1120px) {
    .file-row {
        flex-wrap: wrap !important;
        gap: 10px !important;
    }
}