:root {
    --bg-color: #0a0a0a;
    --text-color: #f1f1f1;
    --gold-primary: #d4af37;
    --gold-secondary: #aa8529;
    --gold-gradient: linear-gradient(135deg, #f9d976 0%, #e9b646 50%, #c19024 100%);
    --search-bg: rgba(255, 255, 255, 0.05);
    --search-border: rgba(212, 175, 55, 0.3);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    background-image: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    overflow-x: hidden;
}

.wrapper {
    width: 100%;
    max-width: 800px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-container {
    margin-bottom: 40px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

.cari-kami-text {
    margin-top: 25px;
    font-size: 26px;
    font-weight: 600;
    color: var(--gold-primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
    animation: pulseText 2s infinite ease-in-out;
}

@keyframes pulseText {
    0% { opacity: 0.85; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
    100% { opacity: 0.85; transform: scale(1); }
}

.logo {
    width: 100%;
    max-width: 450px;
    height: auto;
    object-fit: contain;
}

main {
    width: 100%;
    max-width: 650px;
}

#search-form {
    width: 100%;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: stretch;
    width: 100%;
    background: var(--search-bg);
    border: 1px solid var(--search-border);
    border-radius: 50px;
    padding: 5px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.search-input-wrapper:focus-within {
    border-color: var(--gold-primary);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.15), 0 0 0 2px rgba(212, 175, 55, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

#search-input {
    flex-grow: 1;
    padding: 15px 25px;
    background: transparent;
    border: none;
    color: var(--text-color);
    font-size: 18px;
    font-family: 'Outfit', sans-serif;
    outline: none;
    width: 100%;
}

#search-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
}

#search-button {
    padding: 0 35px;
    background: var(--gold-gradient);
    border: none;
    border-radius: 40px;
    color: #111;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 5px;
}

#search-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #ffdf86 0%, #f9c656 50%, #d1a034 100%);
}

#search-button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

/* Animations */
.fade-in {
    animation: fadeIn 1s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
    opacity: 0;
    transform: translateY(20px);
}

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

/* Responsive */
@media screen and (max-width: 600px) {
    .logo {
        max-width: 280px;
    }

    .cari-kami-text {
        font-size: 18px;
        margin-top: 15px;
        letter-spacing: 1px;
    }

    .search-input-wrapper {
        flex-direction: column;
        border-radius: 20px;
        padding: 10px;
    }

    #search-input {
        padding: 15px;
        text-align: center;
    }

    #search-button {
        padding: 15px;
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
        border-radius: 12px;
    }
}

.luxury-features {
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(145deg, rgba(20,20,20,0.8), rgba(10,10,10,0.9));
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
}

.luxury-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--gold-primary);
    border-radius: 50px;
    color: var(--gold-primary);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
    transition: all 0.3s ease;
}

.badge:hover {
    transform: translateY(-2px);
    background: rgba(212, 175, 55, 0.15);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.25);
}

.badge .icon {
    font-size: 18px;
    font-style: normal;
}

.luxury-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.step {
    display: flex;
    align-items: center;
    gap: 15px;
}

.step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: #111;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.step p {
    font-size: 16px;
    color: var(--text-color);
    margin: 0;
    letter-spacing: 0.5px;
    font-weight: 400;
}

.step-divider {
    width: 50px;
    height: 1px;
    background: rgba(212, 175, 55, 0.5);
    position: relative;
}

.step-divider::after {
    content: '';
    position: absolute;
    right: 0;
    top: -4px;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 6px solid rgba(212, 175, 55, 0.8);
}

@media screen and (max-width: 600px) {
    .luxury-steps {
        flex-direction: column;
        align-items: flex-start;
        width: fit-content;
        margin: 0 auto;
        gap: 15px;
    }
    .step-divider {
        display: none;
    }
}
