/* Buttons */
.btn-gold {
    background-color: var(--gold);
    color: var(--navy-blue);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-gold:hover {
    background-color: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-outline-navy {
    background-color: transparent;
    color: var(--navy-blue);
    border: 2px solid var(--navy-blue);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-outline-navy:hover {
    background-color: var(--navy-blue);
    color: var(--white);
}

.btn-icon {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.8rem 1.8rem;
    border-radius: 16px;
    transition: transform 0.3s;
}

.btn-icon:hover {
    transform: translateY(-5px);
}

.btn-dark {
    background-color: var(--navy-blue);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(11, 25, 44, 0.2);
}

.btn-light {
    background-color: var(--white);
    color: var(--navy-blue);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* Cards */
.card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.step-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    padding: 3rem 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-10px);
    background: var(--white);
    box-shadow: 0 25px 50px -12px rgba(11, 25, 44, 0.1);
}

.step-number {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(212, 175, 55, 0.1);
    z-index: 0;
    transition: color 0.4s ease;
}

.step-card:hover .step-number {
    color: rgba(212, 175, 55, 0.2);
}

/* Tag */
.tag-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 700;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.tag-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold);
}

.badge {
    background-color: var(--white);
    padding: 0.4rem 1.2rem;
    border-radius: 30px;
    font-weight: 700;
    color: var(--navy-blue);
    font-size: 0.85rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* Forms */
.input-field {
    width: 100%;
    padding: 1.1rem;
    border: 2px solid #F1F5F9;
    background-color: #F8FAFC;
    border-radius: 16px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
    outline: none;
}

.input-field:focus {
    border-color: var(--navy-blue);
    background-color: var(--white);
}

.form-container {
    background: var(--white);
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
}
