/* Explain: Reusable UI components with updated styling for the courier service site. - */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--accent-orange);
    color: var(--white-color);
    padding: 0.875rem 1.75rem;
    border-radius: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.btn-primary:hover {
    background: var(--accent-orange-hover);
    transform: translateY(-1px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--primary-blue);
    color: var(--white-color);
    padding: 0.875rem 1.75rem;
    border-radius: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.btn-secondary:hover {
    background: var(--primary-blue-hover);
    transform: translateY(-1px);
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--white-color);
    padding: 0.875rem 1.75rem;
    border-radius: 0.5rem;
    border: 2px solid var(--white-color);
    font-family: var(--font-heading);
    font-weight: 600;
    transition: all 0.2s ease;
    cursor: pointer;
}

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

.glass-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px -15px rgba(0,0,0,0.1);
}

.section-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    background: rgba(29, 78, 216, 0.1);
    color: var(--primary-blue);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border-color);
    background: var(--white-color);
    color: var(--text-main);
    font-family: var(--font-body);
    transition: all 0.2s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.15);
}

.tracking-timeline-point {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
}

.tracking-timeline-point.active {
    background: var(--accent-orange);
}

.tracking-timeline-point.completed {
    background: var(--primary-blue);
}